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

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

Issue 319283002: [FastTextAutosizer] Inherit the text autosizing multiplier (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove non-critical changes Created 6 years, 6 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/core/rendering/style/StyleInheritedData.cpp ('k') | Source/core/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleVisualData.h
diff --git a/Source/core/rendering/style/StyleVisualData.h b/Source/core/rendering/style/StyleVisualData.h
index 2657b93ceecb0d8ed6bbcfb1102af1ea1ba28cbe..ed79ea1aece7c31d592a97c4696a839135de69eb 100644
--- a/Source/core/rendering/style/StyleVisualData.h
+++ b/Source/core/rendering/style/StyleVisualData.h
@@ -43,7 +43,6 @@ public:
return clip == o.clip
&& hasClip == o.hasClip
&& textDecoration == o.textDecoration
- && m_textAutosizingMultiplier == o.m_textAutosizingMultiplier
&& m_zoom == o.m_zoom;
}
bool operator!=(const StyleVisualData& o) const { return !(*this == o); }
@@ -52,7 +51,6 @@ public:
bool hasClip : 1;
unsigned textDecoration : TextDecorationBits; // Text decorations defined *only* by this element.
- float m_textAutosizingMultiplier;
float m_zoom;
private:
« no previous file with comments | « Source/core/rendering/style/StyleInheritedData.cpp ('k') | Source/core/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698