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

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

Issue 2430813002: Switch to shorter names for property tree storage and updates (Closed)
Patch Set: Created 4 years, 2 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/PaintPropertyTreePrinter.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
index 80040395b9dc2733eed8490146f69ec8351c42b5..a56f12b60bd6a697ef66ec11b2dbda7e31c3d463 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreePrinter.cpp
@@ -75,8 +75,7 @@ class PropertyTreePrinter {
}
void collectPropertyNodes(const LayoutObject& object) {
- if (const ObjectPaintProperties* paintProperties =
- object.objectPaintProperties())
+ if (const ObjectPaintProperties* paintProperties = object.paintProperties())
Traits::addObjectPaintProperties(object, *paintProperties, *this);
for (LayoutObject* child = object.slowFirstChild(); child;
child = child->nextSibling())
@@ -452,7 +451,7 @@ class PaintPropertyTreeGraphBuilder {
}
void writeObjectPaintPropertyNodes(const LayoutObject& object) {
- const ObjectPaintProperties* properties = object.objectPaintProperties();
+ const ObjectPaintProperties* properties = object.paintProperties();
if (!properties)
return;
const TransformPaintPropertyNode* paintOffset =

Powered by Google App Engine
This is Rietveld 408576698