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

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

Issue 15920002: Fix WebView compositor input handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit test Created 7 years, 6 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/android/synchronous_compositor_factory.h
diff --git a/content/renderer/android/synchronous_compositor_factory.h b/content/renderer/android/synchronous_compositor_factory.h
index 9c8fdce2e08f6428cd31e729a7dabd3e8396b447..1e535d49eccb3646a50d4c3884f78332fd12c18d 100644
--- a/content/renderer/android/synchronous_compositor_factory.h
+++ b/content/renderer/android/synchronous_compositor_factory.h
@@ -18,6 +18,8 @@ class OutputSurface;
namespace content {
+class InputHandlerManagerClient;
+
// Decouples creation from usage of the parts needed for the synchonous
// compositor rendering path. In practice this is only used in single
// process mode (namely, for Android WebView) hence the implementation of
@@ -33,6 +35,7 @@ class SynchronousCompositorFactory {
GetCompositorMessageLoop() = 0;
virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
int routing_id) = 0;
+ virtual InputHandlerManagerClient* GetInputHandlerManagerClient() = 0;
joth 2013/06/04 19:25:05 mention that ownership is not returned.
jdduke (slow) 2013/06/04 19:44:17 Done.
protected:
SynchronousCompositorFactory() {}

Powered by Google App Engine
This is Rietveld 408576698