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

Unified Diff: content/browser/renderer_host/render_widget_host_view_base.cc

Issue 26664002: SyntheticGestureTarget implementation for injecting synthetic input events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase_wip Created 7 years, 2 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/render_widget_host_view_base.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_base.cc b/content/browser/renderer_host/render_widget_host_view_base.cc
index 320e3e1757e4b7ed4dbf79341cd65bf17eaccf3c..3758f2dc7e40a94a43940b96c518025d4b8c7741 100644
--- a/content/browser/renderer_host/render_widget_host_view_base.cc
+++ b/content/browser/renderer_host/render_widget_host_view_base.cc
@@ -528,6 +528,12 @@ void RenderWidgetHostViewBase::ProcessAckedTouchEvent(
const TouchEventWithLatencyInfo& touch, InputEventAckState ack_result) {
}
+SyntheticGestureTarget*
+RenderWidgetHostViewBase::CreateSyntheticGestureTarget() {
+ NOTIMPLEMENTED();
Dominik Grewe 2013/10/25 16:10:11 Here's where you would return SyntheticGestureTarg
kouhei (in TOK) 2013/10/28 03:03:17 Done.
+ return NULL;
+}
+
// Platform implementation should override this method to allow frame
// subscription. Frame subscriber is set to RenderProcessHost, which is
// platform independent. It should be set to the specific presenter on each

Powered by Google App Engine
This is Rietveld 408576698