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

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: Don't mark non-self-painting layers for needsRepaint 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
« no previous file with comments | « no previous file | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.h
diff --git a/Source/core/frame/FrameView.h b/Source/core/frame/FrameView.h
index 2b927493980b7533a852fb49cf5caf9c8f46bd55..a1b2b4383ff62b44434aa193bdc964110947d04a 100644
--- a/Source/core/frame/FrameView.h
+++ b/Source/core/frame/FrameView.h
@@ -77,10 +77,13 @@ typedef unsigned long long DOMTimeStamp;
class CORE_EXPORT FrameView final : public Widget, public ScrollableArea {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(FrameView);
-public:
- friend class LayoutView;
+
+ friend class DisplayItemListPaintTestForSlimmingPaintV2;
friend class Internals;
+ friend class LayoutPart; // for invalidateTreeIfNeeded
+ friend class LayoutView; // for contentRectangleForPaintInvalidation
+public:
static PassRefPtrWillBeRawPtr<FrameView> create(LocalFrame*);
static PassRefPtrWillBeRawPtr<FrameView> create(LocalFrame*, const IntSize& initialSize);
@@ -624,8 +627,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);
« no previous file with comments | « no previous file | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698