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

Unified Diff: content/renderer/input/render_widget_input_handler.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/renderer/input/render_widget_input_handler.h
diff --git a/content/renderer/input/render_widget_input_handler.h b/content/renderer/input/render_widget_input_handler.h
index 85af7b790405d8101de65301c8abde0cec0fe748..050ab394f32fb56a40f43398fd7f41415accc50b 100644
--- a/content/renderer/input/render_widget_input_handler.h
+++ b/content/renderer/input/render_widget_input_handler.h
@@ -9,11 +9,11 @@
#include "base/macros.h"
#include "base/time/time.h"
-#include "content/common/input/did_overscroll_params.h"
#include "content/common/input/input_event_ack.h"
#include "content/common/input/input_event_dispatch_type.h"
#include "third_party/WebKit/public/web/WebInputEvent.h"
#include "ui/base/ui_base_types.h"
+#include "ui/events/blink/did_overscroll_params.h"
namespace blink {
struct WebFloatPoint;
@@ -89,7 +89,7 @@ class CONTENT_EXPORT RenderWidgetInputHandler {
// handled. If the event causes overscroll, the overscroll metadata can be
// bundled in the event ack, saving an IPC. Note that we must continue
// supporting overscroll IPC notifications due to fling animation updates.
- std::unique_ptr<DidOverscrollParams>* handling_event_overscroll_;
+ std::unique_ptr<ui::DidOverscrollParams>* handling_event_overscroll_;
// Type of the input event we are currently handling.
blink::WebInputEvent::Type handling_event_type_;

Powered by Google App Engine
This is Rietveld 408576698