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

Unified Diff: third_party/WebKit/Source/core/layout/PaintInvalidationState.h

Issue 1955073002: LayoutObject::paintingLayer() to correctly handle column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/Source/core/layout/PaintInvalidationState.h
diff --git a/third_party/WebKit/Source/core/layout/PaintInvalidationState.h b/third_party/WebKit/Source/core/layout/PaintInvalidationState.h
index 196cbf9b3d6af364571960c31cd6a1890073446b..31759c8e2e879a11cd3019d8fe898f88df53c62a 100644
--- a/third_party/WebKit/Source/core/layout/PaintInvalidationState.h
+++ b/third_party/WebKit/Source/core/layout/PaintInvalidationState.h
@@ -75,7 +75,7 @@ public:
void pushDelayedPaintInvalidationTarget(LayoutObject& obj) const { m_pendingDelayedPaintInvalidations.append(&obj); }
Vector<LayoutObject*>& pendingDelayedPaintInvalidationTargets() const { return m_pendingDelayedPaintInvalidations; }
- PaintLayer& enclosingSelfPaintingLayer(const LayoutObject&) const;
+ PaintLayer& paintingLayer() const;
#if ENABLE(ASSERT)
const LayoutObject& currentObject() const { return m_currentObject; }
@@ -137,7 +137,7 @@ private:
Vector<LayoutObject*>& m_pendingDelayedPaintInvalidations;
- PaintLayer& m_enclosingSelfPaintingLayer;
+ PaintLayer& m_paintingLayer;
#if ENABLE(ASSERT)
bool m_didUpdateForChildren;

Powered by Google App Engine
This is Rietveld 408576698