| Index: third_party/WebKit/Source/core/paint/PrePaintTreeWalk.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PrePaintTreeWalk.cpp b/third_party/WebKit/Source/core/paint/PrePaintTreeWalk.cpp
|
| index 83ebd785bdce76b3621a14e01a18a264c8db71fe..21b73d52e780ac12c6286b3741525cd3e3d7c656 100644
|
| --- a/third_party/WebKit/Source/core/paint/PrePaintTreeWalk.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PrePaintTreeWalk.cpp
|
| @@ -41,8 +41,8 @@ void PrePaintTreeWalk::walk(FrameView& frameView,
|
| return;
|
|
|
| PrePaintTreeWalkContext localContext(context);
|
| - m_propertyTreeBuilder.buildTreeNodes(frameView,
|
| - localContext.treeBuilderContext);
|
| + m_propertyTreeBuilder.updatePropertiesAndContext(
|
| + frameView, localContext.treeBuilderContext);
|
|
|
| if (RuntimeEnabledFeatures::slimmingPaintInvalidationEnabled()) {
|
| m_paintInvalidator.invalidatePaintIfNeeded(
|
| @@ -75,12 +75,12 @@ void PrePaintTreeWalk::walk(const LayoutObject& object,
|
| return;
|
| }
|
|
|
| - m_propertyTreeBuilder.buildTreeNodesForSelf(object,
|
| - localContext.treeBuilderContext);
|
| + m_propertyTreeBuilder.updatePropertiesAndContextForSelf(
|
| + object, localContext.treeBuilderContext);
|
| if (RuntimeEnabledFeatures::slimmingPaintInvalidationEnabled())
|
| m_paintInvalidator.invalidatePaintIfNeeded(
|
| object, localContext.paintInvalidatorContext);
|
| - m_propertyTreeBuilder.buildTreeNodesForChildren(
|
| + m_propertyTreeBuilder.updatePropertiesAndContextForChildren(
|
| object, localContext.treeBuilderContext);
|
|
|
| for (const LayoutObject* child = object.slowFirstChild(); child;
|
|
|