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

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: s/setSelfNeedsRepaint/setNeedsRepaint/ 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 a8bb967ccd28eda6f44ecbb7bee578e7afa13204..20c02ac8e8758c35722cf6401a27a3dfd8e40fa5 100644
--- a/Source/core/frame/FrameView.h
+++ b/Source/core/frame/FrameView.h
@@ -601,6 +601,9 @@ protected:
void invalidateTreeIfNeeded(PaintInvalidationState&);
private:
+ friend class DisplayItemListPaintTestForSlimmingPaintV2;
+ friend class LayoutPart;
+
explicit FrameView(LocalFrame*);
void setScrollOffset(const IntPoint&, ScrollType) override;
@@ -609,6 +612,7 @@ private:
enum LifeCycleUpdateOption {
AllPhases,
OnlyUpToCompositingCleanPlusScrolling,
+ OnlyUpToPaintForSlimmingPaintV2Clean,
};
void updateLifecyclePhasesInternal(LifeCycleUpdateOption);
@@ -626,8 +630,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