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

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

Issue 2495893002: Implement incremental paint property tree rebuilding (Closed)
Patch Set: Suppress main thread scrolling invalidation failures Created 4 years, 1 month 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 8ea21046fb142872b87ef82e3612b4b483d084a6..35414d9086874bade772194252f86eecb216ec60 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
@@ -84,17 +84,16 @@ class PaintPropertyTreeBuilder {
PaintPropertyTreeBuilderContext setupInitialContext();
// Update the paint properties for a frame and ensure the context is up to
// date.
- void updateFramePropertiesAndContext(FrameView&,
- PaintPropertyTreeBuilderContext&);
+ void updateProperties(FrameView&, PaintPropertyTreeBuilderContext&);
// Update the paint properties that affect this object (e.g., properties like
// paint offset translation) and ensure the context is up to date.
- void updatePropertiesAndContextForSelf(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
+ void updatePropertiesForSelf(const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
// Update the paint properties that affect children of this object (e.g.,
// scroll offset transform) and ensure the context is up to date.
- void updatePropertiesAndContextForChildren(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
+ void updatePropertiesForChildren(const LayoutObject&,
+ PaintPropertyTreeBuilderContext&);
private:
static void updatePaintOffsetTranslation(const LayoutObject&,

Powered by Google App Engine
This is Rietveld 408576698