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

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

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.h
diff --git a/third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.h b/third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.h
index 8d9ddf2589a9fa47786c55b032b7940366443c12..6fa6d1a1d74b60c60250c4add5c9608460f91ad7 100644
--- a/third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.h
+++ b/third_party/WebKit/Source/core/page/scrolling/ViewportScrollCallback.h
@@ -21,7 +21,9 @@ class OverscrollController;
class ViewportScrollCallback : public ScrollStateCallback {
public:
- ViewportScrollCallback(TopControls&, OverscrollController&);
+ // ViewportScrollCallback does not assume ownership of TopControls or of
+ // OverscrollController.
+ ViewportScrollCallback(TopControls*, OverscrollController*);
~ViewportScrollCallback();
void handleEvent(ScrollState*) override;

Powered by Google App Engine
This is Rietveld 408576698