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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.h

Issue 2322073006: Turn off the old compositing path for SPv2. (Closed)
Patch Set: none Created 4 years, 3 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/frame/FrameView.h
diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
index 464953ad0d065036ef9cc5aaa9a588a63fabdee8..41990a3424389ed09b1836a96abeaa59b5b10588 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.h
+++ b/third_party/WebKit/Source/core/frame/FrameView.h
@@ -79,6 +79,7 @@ class LayoutObject;
class LayoutReplaced;
class LayoutScrollbarPart;
class LayoutView;
+class PaintController;
class PaintInvalidationState;
class Page;
class ScrollingCoordinator;
@@ -250,10 +251,6 @@ public:
// Everything except paint (the last phase).
void updateAllLifecyclePhasesExceptPaint();
- // Computes the style, layout and compositing lifecycle stages if needed. After calling this method, all frames will be in a lifecycle
- // state >= CompositingClean, and scrolling has been updated (unless throttling is allowed).
- void updateLifecycleToCompositingCleanPlusScrolling();
-
// Computes only the style and layout lifecycle stages.
// After calling this method, all frames will be in a lifecycle state >= LayoutClean (unless throttling is allowed).
void updateLifecycleToLayoutClean();
@@ -951,6 +948,9 @@ private:
PaintInvalidationReason reason;
};
std::unique_ptr<Vector<ObjectPaintInvalidation>> m_trackedObjectPaintInvalidations;
+
+ // For Slimming Paint v2 only.
+ std::unique_ptr<PaintController> m_paintController;
};
inline void FrameView::incrementVisuallyNonEmptyCharacterCount(unsigned count)

Powered by Google App Engine
This is Rietveld 408576698