| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/paint/PrePaintTreeWalk.h" | 5 #include "core/paint/PrePaintTreeWalk.h" |
| 6 | 6 |
| 7 #include "core/dom/DocumentLifecycle.h" | 7 #include "core/dom/DocumentLifecycle.h" |
| 8 #include "core/frame/FrameView.h" | 8 #include "core/frame/FrameView.h" |
| 9 #include "core/frame/LocalFrame.h" | 9 #include "core/frame/LocalFrame.h" |
| 10 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" | 10 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 PaintPropertyTreeBuilderContext treeBuilderContext; | 23 PaintPropertyTreeBuilderContext treeBuilderContext; |
| 24 PaintInvalidatorContext paintInvalidatorContext; | 24 PaintInvalidatorContext paintInvalidatorContext; |
| 25 }; | 25 }; |
| 26 | 26 |
| 27 void PrePaintTreeWalk::walk(FrameView& rootFrame) | 27 void PrePaintTreeWalk::walk(FrameView& rootFrame) |
| 28 { | 28 { |
| 29 DCHECK(rootFrame.frame().document()->lifecycle().state() == DocumentLifecycl
e::InPrePaint); | 29 DCHECK(rootFrame.frame().document()->lifecycle().state() == DocumentLifecycl
e::InPrePaint); |
| 30 | 30 |
| 31 PrePaintTreeWalkContext rootContext; | 31 PrePaintTreeWalkContext rootContext; |
| 32 m_propertyTreeBuilder.buildTreeRootNodes(rootFrame, rootContext.treeBuilderC
ontext); | |
| 33 walk(rootFrame, rootContext); | 32 walk(rootFrame, rootContext); |
| 34 m_paintInvalidator.processPendingDelayedPaintInvalidations(); | 33 m_paintInvalidator.processPendingDelayedPaintInvalidations(); |
| 35 } | 34 } |
| 36 | 35 |
| 37 void PrePaintTreeWalk::walk(FrameView& frameView, const PrePaintTreeWalkContext&
context) | 36 void PrePaintTreeWalk::walk(FrameView& frameView, const PrePaintTreeWalkContext&
context) |
| 38 { | 37 { |
| 39 if (frameView.shouldThrottleRendering()) | 38 if (frameView.shouldThrottleRendering()) |
| 40 return; | 39 return; |
| 41 | 40 |
| 42 PrePaintTreeWalkContext localContext(context); | 41 PrePaintTreeWalkContext localContext(context); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 if (widget && widget->isFrameView()) { | 73 if (widget && widget->isFrameView()) { |
| 75 localContext.treeBuilderContext.current.paintOffset += layoutPart.re
placedContentRect().location() - widget->frameRect().location(); | 74 localContext.treeBuilderContext.current.paintOffset += layoutPart.re
placedContentRect().location() - widget->frameRect().location(); |
| 76 localContext.treeBuilderContext.current.paintOffset = roundedIntPoin
t(localContext.treeBuilderContext.current.paintOffset); | 75 localContext.treeBuilderContext.current.paintOffset = roundedIntPoin
t(localContext.treeBuilderContext.current.paintOffset); |
| 77 walk(*toFrameView(widget), localContext); | 76 walk(*toFrameView(widget), localContext); |
| 78 } | 77 } |
| 79 // TODO(pdr): Investigate RemoteFrameView (crbug.com/579281). | 78 // TODO(pdr): Investigate RemoteFrameView (crbug.com/579281). |
| 80 } | 79 } |
| 81 } | 80 } |
| 82 | 81 |
| 83 } // namespace blink | 82 } // namespace blink |
| OLD | NEW |