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

Unified Diff: content/public/browser/browser_plugin_guest_delegate.h

Issue 293043003: <webview>: Move PreHandleGestureEvent in chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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/public/browser/browser_plugin_guest_delegate.h
diff --git a/content/public/browser/browser_plugin_guest_delegate.h b/content/public/browser/browser_plugin_guest_delegate.h
index cf552cfb5b986b79860394600774ee91a7ffffab..17195292b943c18bf3449b202461632799795851 100644
--- a/content/public/browser/browser_plugin_guest_delegate.h
+++ b/content/public/browser/browser_plugin_guest_delegate.h
@@ -17,6 +17,10 @@
#include "ui/gfx/size.h"
#include "url/gurl.h"
+namespace blink {
+class WebGestureEvent;
+} // namespace blink
+
namespace content {
class ColorChooser;
@@ -205,6 +209,9 @@ class CONTENT_EXPORT BrowserPluginGuestDelegate {
typedef base::Callback<void(WebContents*)> DestructionCallback;
virtual void RegisterDestructionCallback(
const DestructionCallback& callback) {}
+
+ virtual bool PreHandleGestureEvent(content::WebContents* source,
jam 2014/05/21 16:44:39 no content::
Fady Samuel 2014/05/22 13:37:50 Done.
+ const blink::WebGestureEvent& event);
};
} // namespace content
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_guest.cc ('k') | content/public/browser/browser_plugin_guest_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698