Home | History | Annotate | Download | only in browser_plugin

Lines Matching defs:BrowserPluginManager

26 // BrowserPluginManager manages the routing of messages to the appropriate
28 class CONTENT_EXPORT BrowserPluginManager
30 public base::RefCounted<BrowserPluginManager> {
32 // Returns the one BrowserPluginManager for this process.
33 static BrowserPluginManager* Create(RenderViewImpl* render_view);
38 BrowserPluginManager::factory_ = factory;
41 explicit BrowserPluginManager(RenderViewImpl* render_view);
45 // BrowserPluginManager via AddBrowserPlugin. When it is destroyed, it is
61 // BrowserPluginManager must override the default Send behavior.
64 // Don't destroy the BrowserPluginManager when the RenderViewImpl goes away.
65 // BrowserPluginManager's lifetime is managed by a reference count. Once
67 // then the BrowserPluginManager will be destroyed.
72 friend class base::RefCounted<BrowserPluginManager>;
77 virtual ~BrowserPluginManager();
82 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManager);