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

Unified Diff: chrome/renderer/blocked_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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/blocked_plugin.h
===================================================================
--- chrome/renderer/blocked_plugin.h (revision 67601)
+++ chrome/renderer/blocked_plugin.h (working copy)
@@ -29,10 +29,12 @@
const string16& message);
WebViewPlugin* plugin() { return plugin_; }
+ void menuOptionSelected(unsigned id);
brettw 2010/12/07 06:23:56 This should be capitalized. I'd probably also put
Chris Evans 2010/12/07 15:36:14 Done.
// WebViewPlugin::Delegate methods:
virtual void BindWebFrame(WebKit::WebFrame* frame);
virtual void WillDestroyPlugin();
+ virtual void ShowContextMenu(const WebKit::WebMouseEvent&);
// NotificationObserver methods:
virtual void Observe(NotificationType type,
@@ -50,10 +52,14 @@
// Load the blocked plugin.
void LoadPlugin();
+ // Hide the blocked plugin.
+ void HidePlugin();
+
RenderView* render_view_;
WebKit::WebFrame* frame_;
WebKit::WebPluginParams plugin_params_;
WebViewPlugin* plugin_;
+ string16 name_;
brettw 2010/12/07 06:23:56 Can you provide a comment for this? It's very gene
Chris Evans 2010/12/07 15:36:14 Done.
NotificationRegistrar registrar_;
};

Powered by Google App Engine
This is Rietveld 408576698