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

Unified Diff: content/public/renderer/render_view_observer.h

Issue 11622009: Forward Webkit Gesture events to interested RenderViewObservers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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/public/renderer/render_view_observer.h
===================================================================
--- content/public/renderer/render_view_observer.h (revision 173027)
+++ content/public/renderer/render_view_observer.h (working copy)
@@ -22,6 +22,7 @@
class WebDataSource;
class WebFrame;
class WebFormElement;
+class WebGestureEvent;
class WebMediaPlayerClient;
class WebMouseEvent;
class WebNode;
@@ -89,6 +90,7 @@
virtual void DidHandleMouseEvent(const WebKit::WebMouseEvent& event) {}
virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) {}
virtual void DidCreatePepperPlugin(RendererPpapiHost* host) {}
+ virtual void DidHandleGestureEvent(const WebKit::WebGestureEvent& event) {}
jam 2012/12/17 22:51:09 nit: i'd move this up one line to match the other
ananta 2012/12/17 22:59:06 Done.
// These match incoming IPCs.
virtual void Navigate(const GURL& url) {}

Powered by Google App Engine
This is Rietveld 408576698