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

Unified Diff: third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp

Issue 2338373004: Refactor PropertyTreeState as GeometryPropertyTreeState (Closed)
Patch Set: Rebase Created 4 years, 3 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
Index: third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
diff --git a/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp b/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
index 3d0f7059ff317f46ae362084da59707c5cdb2956..11af26372097f6b2de63f7de1c718d6f8da8241f 100644
--- a/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
+++ b/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
@@ -6,9 +6,9 @@
namespace blink {
-void ObjectPaintProperties::getContentsProperties(PropertyTreeState& properties) const
+void ObjectPaintProperties::getContentsProperties(GeometryPropertyTreeState& properties) const
{
- properties = localBorderBoxProperties()->propertyTreeState;
+ properties = localBorderBoxProperties()->geometryPropertyTreeState;
if (scrollTranslation())
properties.transform = scrollTranslation();
else if (svgLocalToBorderBoxTransform())

Powered by Google App Engine
This is Rietveld 408576698