Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Unified Diff: Source/WebCore/rendering/style/StyleVisualData.h

Issue 13723004: Remove the ENABLE_TEXT_AUTOSIZING compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/rendering/style/RenderStyle.cpp ('k') | Source/WebCore/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/rendering/style/StyleVisualData.h
diff --git a/Source/WebCore/rendering/style/StyleVisualData.h b/Source/WebCore/rendering/style/StyleVisualData.h
index b5140a78deaecc2e74a5cfc58aa587030da40b6b..7bbf19d50e6e9eca25142687628b27fbb5f23704 100644
--- a/Source/WebCore/rendering/style/StyleVisualData.h
+++ b/Source/WebCore/rendering/style/StyleVisualData.h
@@ -43,9 +43,7 @@ public:
return clip == o.clip
&& hasClip == o.hasClip
&& textDecoration == o.textDecoration
-#if ENABLE(TEXT_AUTOSIZING)
&& m_textAutosizingMultiplier == o.m_textAutosizingMultiplier
-#endif
&& m_zoom == o.m_zoom;
}
bool operator!=(const StyleVisualData& o) const { return !(*this == o); }
@@ -54,9 +52,7 @@ public:
bool hasClip : 1;
unsigned textDecoration : ETextDecorationBits; // Text decorations defined *only* by this element.
-#if ENABLE(TEXT_AUTOSIZING)
float m_textAutosizingMultiplier;
-#endif
float m_zoom;
private:
« no previous file with comments | « Source/WebCore/rendering/style/RenderStyle.cpp ('k') | Source/WebCore/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698