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

Unified Diff: third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.cpp

Issue 2069713002: Make all gesture scrolls use customization path internally (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + Fix test Created 4 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: third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.cpp
diff --git a/third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.cpp b/third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.cpp
index 77572aed0c5571f8c19e15978303f666aed79649..f8cc13a7ff8d3c9b0a824568832561bc51bfe749 100644
--- a/third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.cpp
+++ b/third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.cpp
@@ -16,9 +16,9 @@
namespace blink {
ViewportScrollCallback::ViewportScrollCallback(
- TopControls& topControls, OverscrollController& overscrollController)
- : m_topControls(&topControls)
- , m_overscrollController(&overscrollController)
+ TopControls* topControls, OverscrollController* overscrollController)
+ : m_topControls(topControls)
+ , m_overscrollController(overscrollController)
{
}

Powered by Google App Engine
This is Rietveld 408576698