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

Unified Diff: content/renderer/input/input_event_filter.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/input_event_filter.h
diff --git a/content/renderer/input/input_event_filter.h b/content/renderer/input/input_event_filter.h
index 55545c5f262b7da68443bbcf07bdac7b80536cc1..9f9e949be0196cbb7e911ddc78ef02fee2041518 100644
--- a/content/renderer/input/input_event_filter.h
+++ b/content/renderer/input/input_event_filter.h
@@ -24,6 +24,7 @@ class SingleThreadTaskRunner;
namespace ui {
class SynchronousInputHandlerProxy;
+struct DidOverscrollParams;
}
namespace IPC {
@@ -64,7 +65,7 @@ class CONTENT_EXPORT InputEventFilter : public InputHandlerManagerClient,
void RegisterRoutingID(int routing_id) override;
void UnregisterRoutingID(int routing_id) override;
void DidOverscroll(int routing_id,
- const DidOverscrollParams& params) override;
+ const ui::DidOverscrollParams& params) override;
void DidStartFlinging(int routing_id) override;
void DidStopFlinging(int routing_id) override;
void NotifyInputEventHandled(int routing_id,
@@ -123,7 +124,7 @@ class CONTENT_EXPORT InputEventFilter : public InputHandlerManagerClient,
// dispatched. 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>* current_overscroll_params_;
+ std::unique_ptr<ui::DidOverscrollParams>* current_overscroll_params_;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698