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

Unified Diff: Source/core/rendering/RenderBlock.h

Issue 360833002: Divorce PaintInvalidationState from LayoutState (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ToT-ed Created 6 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/rendering/RenderBlock.h
diff --git a/Source/core/rendering/RenderBlock.h b/Source/core/rendering/RenderBlock.h
index 9e75979774ece27fa2f3d130dcac765e95e42c1f..331d0d3e20c13ec19c18119b31cc1e2e10ad20f9 100644
--- a/Source/core/rendering/RenderBlock.h
+++ b/Source/core/rendering/RenderBlock.h
@@ -346,7 +346,7 @@ protected:
virtual bool isInlineBlockOrInlineTable() const OVERRIDE FINAL { return isInline() && isReplaced(); }
- virtual void invalidateTreeAfterLayout(const RenderLayerModelObject&) OVERRIDE;
+ virtual void invalidateTreeAfterLayout(const InvalidationTreeWalkState&) OVERRIDE;
private:
virtual RenderObjectChildList* virtualChildren() OVERRIDE FINAL { return children(); }
@@ -404,7 +404,7 @@ private:
// children.
virtual RenderBlock* firstLineBlock() const OVERRIDE;
- virtual LayoutRect rectWithOutlineForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, LayoutUnit outlineWidth) const OVERRIDE FINAL;
+ virtual LayoutRect rectWithOutlineForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, LayoutUnit outlineWidth, const InvalidationTreeWalkState* = 0) const OVERRIDE FINAL;
virtual RenderStyle* outlineStyleForPaintInvalidation() const OVERRIDE FINAL;
virtual RenderObject* hoverAncestor() const OVERRIDE FINAL;

Powered by Google App Engine
This is Rietveld 408576698