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

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

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 9 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/layout/style/StyleVisualData.h ('k') | Source/core/layout/svg/LayoutSVGBlock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/style/StyleVisualData.cpp
diff --git a/Source/core/layout/style/StyleVisualData.cpp b/Source/core/layout/style/StyleVisualData.cpp
index 29ebed58fa4eb83c11ee0c482eca5c41535892e0..72fd8e1f1f0016dd6d249095fd9ecac759d50b89 100644
--- a/Source/core/layout/style/StyleVisualData.cpp
+++ b/Source/core/layout/style/StyleVisualData.cpp
@@ -22,14 +22,14 @@
#include "config.h"
#include "core/layout/style/StyleVisualData.h"
-#include "core/layout/style/LayoutStyle.h"
+#include "core/layout/style/ComputedStyle.h"
namespace blink {
StyleVisualData::StyleVisualData()
: hasAutoClip(true)
- , textDecoration(LayoutStyle::initialTextDecoration())
- , m_zoom(LayoutStyle::initialZoom())
+ , textDecoration(ComputedStyle::initialTextDecoration())
+ , m_zoom(ComputedStyle::initialZoom())
{
}
@@ -42,7 +42,7 @@ StyleVisualData::StyleVisualData(const StyleVisualData& o)
, clip(o.clip)
, hasAutoClip(o.hasAutoClip)
, textDecoration(o.textDecoration)
- , m_zoom(LayoutStyle::initialZoom())
+ , m_zoom(ComputedStyle::initialZoom())
{
}
« no previous file with comments | « Source/core/layout/style/StyleVisualData.h ('k') | Source/core/layout/svg/LayoutSVGBlock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698