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

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

Issue 1209133002: Traverse into child LayoutViews during invalidateTreeIfNeeded (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: New method Created 5 years, 6 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 e357928df8be93048699acc68f952d8da0905bdf..aaf17f703de48268efe10fd2dcc50243f5e60f64 100644
--- a/Source/core/frame/FrameView.h
+++ b/Source/core/frame/FrameView.h
@@ -63,6 +63,7 @@ class LayoutEmbeddedObject;
class LayoutObject;
class LayoutScrollbarPart;
class LayoutView;
+class PaintInvalidationState;
class Page;
class ScrollingCoordinator;
class TracedValue;
@@ -555,6 +556,8 @@ public:
// Returns true if the document's writing mode is right-to-left or bottom-to-top.
bool isFlippedDocument() const;
+ void invalidateTreeIfNeeded(PaintInvalidationState&);
chrishtr 2015/06/29 23:32:22 Add a note that you shouldn't add a new top-level
Xianzhu 2015/06/30 00:02:12 In the new patch set I keep it private, and add 'f
+
protected:
// Scroll the content via the compositor.
bool scrollContentsFastPath(const IntSize& scrollDelta);
@@ -630,8 +633,6 @@ private:
void scheduleOrPerformPostLayoutTasks();
void performPostLayoutTasks();
- void invalidateTreeIfNeeded(Vector<LayoutObject*>& pendingDelayedPaintInvalidations);
-
DocumentLifecycle& lifecycle() const;
void contentRectangleForPaintInvalidation(const IntRect&);

Powered by Google App Engine
This is Rietveld 408576698