| 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 be65b9de074d97badb7cb11d7b2e10f7e72bcfe5..1264d6287ae5c17bfc9cf5200d7f51576bd3af5f 100644
|
| --- a/third_party/WebKit/Source/core/paint/PrePaintTreeWalk.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PrePaintTreeWalk.cpp
|
| @@ -20,9 +20,8 @@ void PrePaintTreeWalk::walk(FrameView& rootFrame)
|
| {
|
| DCHECK(rootFrame.frame().document()->lifecycle().state() == DocumentLifecycle::InPrePaint);
|
|
|
| - PaintPropertyTreeBuilderRootContext treeBuilderRootContext;
|
| - m_propertyTreeBuilder.buildTreeRootNodes(rootFrame, treeBuilderRootContext);
|
| - PrePaintTreeWalkContext rootContext = { treeBuilderRootContext };
|
| + PrePaintTreeWalkContext rootContext;
|
| + m_propertyTreeBuilder.buildTreeRootNodes(rootFrame, rootContext.treeBuilderContext);
|
| walk(rootFrame, rootContext);
|
| }
|
|
|
|
|