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

Unified Diff: Source/core/page/Chrome.cpp

Issue 348193002: Remove some dead scrolling paths and unused params (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/page/Chrome.cpp
diff --git a/Source/core/page/Chrome.cpp b/Source/core/page/Chrome.cpp
index 296943b93712110997b68d2d62943f8a441ee349..3b503b23600d80c7f60cdfe4be9da4677f5dc5d8 100644
--- a/Source/core/page/Chrome.cpp
+++ b/Source/core/page/Chrome.cpp
@@ -73,9 +73,9 @@ void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect)
m_client->invalidateContentsForSlowScroll(updateRect);
}
-void Chrome::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect)
+void Chrome::scroll(const IntRect& unusedClipRect)
{
- m_client->scroll(scrollDelta, rectToScroll, clipRect);
+ m_client->scroll();
InspectorInstrumentation::didScroll(m_page);
}

Powered by Google App Engine
This is Rietveld 408576698