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

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

Issue 2565073002: Implement the algorithm to test merging and overlap in PaintArtifactCompositor. (Closed)
Patch Set: none Created 4 years 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 350073f43cf0682d3f919badd70ad5b98878da83..9ce2621549aed16dd23a85d4a1598b12277cfa6a 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.h
@@ -14,6 +14,7 @@
namespace blink {
+class CompositingReasonFinder;
class FrameView;
class LayoutObject;
@@ -113,8 +114,7 @@ class PaintPropertyTreeBuilder {
private:
static void updatePaintOffsetTranslation(const LayoutObject&,
PaintPropertyTreeBuilderContext&);
- static void updateTransform(const LayoutObject&,
- PaintPropertyTreeBuilderContext&);
+ void updateTransform(const LayoutObject&, PaintPropertyTreeBuilderContext&);
static void updateTransformForNonRootSVG(const LayoutObject&,
PaintPropertyTreeBuilderContext&);
static void updateEffect(const LayoutObject&,
@@ -137,6 +137,8 @@ class PaintPropertyTreeBuilder {
PaintPropertyTreeBuilderContext&);
static void updateOutOfFlowContext(const LayoutObject&,
PaintPropertyTreeBuilderContext&);
+
+ std::unique_ptr<CompositingReasonFinder> m_compositingReasonFinder;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698