| 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 =
|
|
|