Chromium Code Reviews| 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 |