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

Unified Diff: content/renderer/android/synchronous_compositor_filter.h

Issue 1415953004: Move content/renderer input handling for web input events to ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 1 month 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
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/android/synchronous_compositor_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/android/synchronous_compositor_filter.h
diff --git a/content/renderer/android/synchronous_compositor_filter.h b/content/renderer/android/synchronous_compositor_filter.h
index bf7ba1219eb46c09f0e8f1d7dc6ac7311d4f6d04..550bf1e7aaa296845413b07de984cbc6552805dd 100644
--- a/content/renderer/android/synchronous_compositor_filter.h
+++ b/content/renderer/android/synchronous_compositor_filter.h
@@ -13,6 +13,10 @@
#include "ipc/ipc_sender.h"
#include "ipc/message_filter.h"
+namespace ui {
+class SynchronousInputHandlerProxy;
+}
+
namespace content {
class SynchronousCompositorProxy;
@@ -54,7 +58,8 @@ class SynchronousCompositorFilter : public IPC::MessageFilter,
void SetBoundHandler(const Handler& handler) override;
void DidAddInputHandler(
int routing_id,
- SynchronousInputHandlerProxy* synchronous_input_handler_proxy) override;
+ ui::SynchronousInputHandlerProxy*
+ synchronous_input_handler_proxy) override;
void DidRemoveInputHandler(int routing_id) override;
void DidOverscroll(int routing_id,
const DidOverscrollParams& params) override;
@@ -92,7 +97,7 @@ class SynchronousCompositorFilter : public IPC::MessageFilter,
struct Entry {
SynchronousCompositorExternalBeginFrameSource* begin_frame_source;
SynchronousCompositorOutputSurface* output_surface;
- SynchronousInputHandlerProxy* synchronous_input_handler_proxy;
+ ui::SynchronousInputHandlerProxy* synchronous_input_handler_proxy;
Entry();
bool IsReady();
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/android/synchronous_compositor_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698