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

Unified Diff: content/renderer/npapi/webplugin_impl.h

Issue 111613005: Start removing support for in-process NPAPI plugins. This was a debugging mode and was only support… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments Created 7 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
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/renderer/npapi/webplugin_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/npapi/webplugin_impl.h
===================================================================
--- content/renderer/npapi/webplugin_impl.h (revision 242534)
+++ content/renderer/npapi/webplugin_impl.h (working copy)
@@ -45,7 +45,7 @@
namespace content {
class RenderFrameImpl;
class RenderViewImpl;
-class WebPluginDelegate;
+class WebPluginDelegateProxy;
// This is the WebKit side of the plugin implementation that forwards calls,
// after changing out of WebCore types, to a delegate. The delegate may
@@ -68,7 +68,6 @@
uint32 length);
blink::WebFrame* webframe() { return webframe_; }
- WebPluginDelegate* delegate() { return delegate_; }
// blink::WebPlugin methods:
virtual bool initialize(
@@ -272,8 +271,6 @@
// Check for invalid chars like @, ;, \ before the first / (in path).
bool IsValidUrl(const GURL& url, Referrer referrer_flag);
- WebPluginDelegate* CreatePluginDelegate();
-
std::vector<ClientInfo> clients_;
bool windowless_;
@@ -291,7 +288,7 @@
base::WeakPtr<RenderViewImpl> render_view_;
blink::WebFrame* webframe_;
- WebPluginDelegate* delegate_;
+ WebPluginDelegateProxy* delegate_;
// This is just a weak reference.
blink::WebPluginContainer* container_;
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/renderer/npapi/webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698