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

Unified Diff: third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h

Issue 2404213004: Implement incremental paint property tree rebuilding (Closed)
Patch Set: Fix bug in how svg local to border box was updated, no longer crash in tests 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/PaintPropertyTreeBuilder.h
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
index 1bec1d9bf4cfd2242012e8d61cf061a423b10aab..0f53b2a02f306948b1d802a6ba3329ce84a7eb3e 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
@@ -83,11 +83,14 @@ struct PaintPropertyTreeBuilderContext {
class PaintPropertyTreeBuilder {
public:
PaintPropertyTreeBuilderContext setupInitialContext();
- void buildTreeNodes(FrameView&, PaintPropertyTreeBuilderContext&);
- void buildTreeNodesForSelf(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
- void buildTreeNodesForChildren(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
+ // TODO(pdr): Document this before landing.
+ void updateProperties(FrameView&, PaintPropertyTreeBuilderContext&);
+
+ // TODO(pdr): Document this before landing.
+ void updatePropertiesForSelf(const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
+ void updatePropertiesForChildren(const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
private:
static void updatePaintOffsetTranslation(const LayoutObject&,

Powered by Google App Engine
This is Rietveld 408576698