19 #ifndef NET_INSTAWEB_REWRITER_PUBLIC_FIX_REFLOW_FILTER_H_
20 #define NET_INSTAWEB_REWRITER_PUBLIC_FIX_REFLOW_FILTER_H_
22 #include "base/macros.h"
23 #include "pagespeed/kernel/base/string.h"
24 #include "pagespeed/kernel/base/string_util.h"
25 #include "pagespeed/kernel/html/empty_html_filter.h"
27 namespace net_instaweb {
36 static const char kElementRenderedHeightPropertyName[];
41 virtual void DetermineEnabled(GoogleString* disabled_reason);
42 virtual void StartDocument();
43 virtual void StartElement(HtmlElement* element);
45 virtual const char* Name()
const {
46 return "FixReflowFilter";
50 typedef StringStringMap ElementHeightMap;
51 ElementHeightMap element_height_map_;
Definition: fix_reflow_filter.h:34
Definition: rewrite_driver.h:98