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

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

Issue 1294233004: Subtree caching implementation in blink-core (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add a complex-subtree-update test Created 5 years, 4 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: Source/core/frame/FrameView.h
diff --git a/Source/core/frame/FrameView.h b/Source/core/frame/FrameView.h
index 658e9df69d0958472e573808d1a75d3d7163a007..cb0a2ac4159c9e4a0c07c09687923e1f3ee9612e 100644
--- a/Source/core/frame/FrameView.h
+++ b/Source/core/frame/FrameView.h
@@ -602,6 +602,9 @@ protected:
void invalidateTreeIfNeeded(PaintInvalidationState&);
private:
+ friend class DisplayItemListPaintTestForSlimmingPaintV2;
+ friend class LayoutPart;
+
explicit FrameView(LocalFrame*);
void setScrollOffset(const IntPoint&, ScrollType) override;
@@ -610,6 +613,7 @@ private:
enum LifeCycleUpdateOption {
AllPhases,
OnlyUpToCompositingCleanPlusScrolling,
+ OnlyUpToPaintForSlimmingPaintV2Clean,
};
void updateLifecyclePhasesInternal(LifeCycleUpdateOption);
@@ -627,8 +631,6 @@ private:
// Called when our frame rect changes (or the rect/scroll position of an ancestor changes).
void frameRectsChanged() override;
- friend class LayoutPart;
-
bool contentsInCompositedLayer() const;
void applyOverflowToViewport(LayoutObject*, ScrollbarMode& hMode, ScrollbarMode& vMode);

Powered by Google App Engine
This is Rietveld 408576698