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

Unified Diff: content/browser/renderer_host/input/input_router_client.h

Issue 2240273002: Move |DidOverscrollParams| from |content::| to "ui/events/blink" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move DidOverscrollParams to ui:: Created 4 years, 4 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: content/browser/renderer_host/input/input_router_client.h
diff --git a/content/browser/renderer_host/input/input_router_client.h b/content/browser/renderer_host/input/input_router_client.h
index fffed702d632f5412049bb87078ea4febdbfa77a..fab52aed88a49a337839e0f29337ba5379400203 100644
--- a/content/browser/renderer_host/input/input_router_client.h
+++ b/content/browser/renderer_host/input/input_router_client.h
@@ -13,12 +13,11 @@
namespace ui {
class LatencyInfo;
+struct DidOverscrollParams;
}
namespace content {
-struct DidOverscrollParams;
-
class CONTENT_EXPORT InputRouterClient {
public:
virtual ~InputRouterClient() {}
@@ -49,7 +48,7 @@ class CONTENT_EXPORT InputRouterClient {
// Called when the router has received an overscroll notification from the
// renderer.
- virtual void DidOverscroll(const DidOverscrollParams& params) = 0;
+ virtual void DidOverscroll(const ui::DidOverscrollParams& params) = 0;
// Called when a renderer fling has terminated.
virtual void DidStopFlinging() = 0;

Powered by Google App Engine
This is Rietveld 408576698