Chromium Code Reviews

Unified Diff: webkit/glue/plugins/webview_plugin.h

Issue 5639004: Implement a useful context menu for the blocked plug-in frame:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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);

Powered by Google App Engine