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

Unified Diff: content/browser/renderer_host/input/mock_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/mock_input_router_client.h
diff --git a/content/browser/renderer_host/input/mock_input_router_client.h b/content/browser/renderer_host/input/mock_input_router_client.h
index 5d98228839dcb1fa999591db732abd07205a2c55..beeb084b835b3f711ce1b8ed8638dada4b7db3dc 100644
--- a/content/browser/renderer_host/input/mock_input_router_client.h
+++ b/content/browser/renderer_host/input/mock_input_router_client.h
@@ -10,8 +10,8 @@
#include <memory>
#include "content/browser/renderer_host/input/input_router_client.h"
-#include "content/common/input/did_overscroll_params.h"
#include "content/common/input/input_event.h"
+#include "ui/events/blink/did_overscroll_params.h"
namespace content {
@@ -30,7 +30,7 @@ class MockInputRouterClient : public InputRouterClient {
void DecrementInFlightEventCount() override;
void OnHasTouchEventHandlers(bool has_handlers) override;
void DidFlush() override;
- void DidOverscroll(const DidOverscrollParams& params) override;
+ void DidOverscroll(const ui::DidOverscrollParams& params) override;
void DidStopFlinging() override;
void ForwardGestureEventWithLatencyInfo(
const blink::WebGestureEvent& gesture_event,
@@ -38,7 +38,7 @@ class MockInputRouterClient : public InputRouterClient {
bool GetAndResetFilterEventCalled();
size_t GetAndResetDidFlushCount();
- DidOverscrollParams GetAndResetOverscroll();
+ ui::DidOverscrollParams GetAndResetOverscroll();
void set_input_router(InputRouter* input_router) {
input_router_ = input_router;
@@ -70,7 +70,7 @@ class MockInputRouterClient : public InputRouterClient {
size_t did_flush_called_count_;
- DidOverscrollParams overscroll_;
+ ui::DidOverscrollParams overscroll_;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698