Index: webkit/glue/plugins/webview_plugin.h |
=================================================================== |
--- webkit/glue/plugins/webview_plugin.h (revision 67601) |
+++ webkit/glue/plugins/webview_plugin.h (working copy) |
@@ -11,6 +11,7 @@ |
#include "base/task.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebFrameClient.h" |
+#include "third_party/WebKit/WebKit/chromium/public/WebInputEvent.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebPlugin.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h" |
@@ -39,6 +40,9 @@ |
// Called before the WebViewPlugin is destroyed. The delegate should delete |
// itself here. |
virtual void WillDestroyPlugin() = 0; |
+ |
+ // Called upon a context menu event. |
+ virtual void ShowContextMenu(const WebKit::WebMouseEvent&) = 0; |
brettw
2010/12/07 06:23:56
This can be forward-declared like WebPreferences t
Chris Evans
2010/12/07 15:36:14
I don't believe this is possible, because WebMouse
|
}; |
explicit WebViewPlugin(Delegate* delegate); |