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

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

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/StyleVisualData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleVisualData.cpp
diff --git a/Source/core/rendering/style/StyleVisualData.cpp b/Source/core/rendering/style/StyleVisualData.cpp
index db87122431bc4e50552faa8bacc3bd2c428c07ed..e2774374befe40cb132c1b01528607f40b0f6edc 100644
--- a/Source/core/rendering/style/StyleVisualData.cpp
+++ b/Source/core/rendering/style/StyleVisualData.cpp
@@ -29,7 +29,6 @@ namespace WebCore {
StyleVisualData::StyleVisualData()
: hasClip(false)
, textDecoration(RenderStyle::initialTextDecoration())
- , m_textAutosizingMultiplier(1)
, m_zoom(RenderStyle::initialZoom())
{
}
@@ -43,7 +42,6 @@ StyleVisualData::StyleVisualData(const StyleVisualData& o)
, clip(o.clip)
, hasClip(o.hasClip)
, textDecoration(o.textDecoration)
- , m_textAutosizingMultiplier(o.m_textAutosizingMultiplier)
, m_zoom(RenderStyle::initialZoom())
{
}
« no previous file with comments | « Source/core/rendering/style/StyleVisualData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698