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"
26 #include "util/hash/hash.h"
28 namespace net_instaweb {
37 static const char kElementRenderedHeightPropertyName[];
42 virtual void DetermineEnabled(GoogleString* disabled_reason);
43 virtual void StartDocument();
44 virtual void StartElement(HtmlElement* element);
46 virtual const char* Name()
const {
47 return "FixReflowFilter";
51 typedef StringStringMap ElementHeightMap;
52 ElementHeightMap element_height_map_;
Definition: fix_reflow_filter.h:35
Definition: rewrite_driver.h:98