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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayer.h

Issue 2605543002: Replace adjustment of previous visual rects on scroll with normal paint invalidation (Closed)
Patch Set: Remove unused parameters Created 4 years 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/paint/PaintLayer.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.h b/third_party/WebKit/Source/core/paint/PaintLayer.h
index 8f736a5020cbc9e8d1220030d81ae51f13c95693..5ec98e30761b2a55ff07149430cb6383269da79b 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayer.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.h
@@ -292,7 +292,7 @@ class CORE_EXPORT PaintLayer : public DisplayItemClient {
void updateLayerPosition();
void updateLayerPositionsAfterLayout();
- void updateLayerPositionsAfterOverflowScroll(const DoubleSize& scrollDelta);
+ void updateLayerPositionsAfterOverflowScroll();
PaintLayer* enclosingPaginationLayer() const {
return m_rareData ? m_rareData->enclosingPaginationLayer : nullptr;
@@ -990,9 +990,6 @@ class CORE_EXPORT PaintLayer : public DisplayItemClient {
void dirtyAncestorChainHasSelfPaintingLayerDescendantStatus();
void updateLayerPositionRecursive();
- void updateLayerPositionsAfterScrollRecursive(
- const DoubleSize& scrollDelta,
- bool paintInvalidationContainerWasScrolled);
void setNextSibling(PaintLayer* next) { m_next = next; }
void setPreviousSibling(PaintLayer* prev) { m_previous = prev; }
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutObject.cpp ('k') | third_party/WebKit/Source/core/paint/PaintLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698