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

Unified Diff: content/renderer/render_thread_impl.h

Issue 9609008: Implemented Browser Plugin (NOT FOR REVIEW) (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Updated according to creis@'s comments Created 8 years, 7 months 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/renderer/pepper/pepper_plugin_delegate_impl.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.h
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h
index 305bd162fae0be0ba87335b16d6064f223dda4d3..5362af453759dd57f15d2e60217a4df0d3f6f28b 100644
--- a/content/renderer/render_thread_impl.h
+++ b/content/renderer/render_thread_impl.h
@@ -53,6 +53,8 @@ class ScopedCOMInitializer;
}
namespace content {
+class BrowserPluginChannelManager;
+class BrowserPluginRegistry;
class MediaStreamCenter;
class RenderProcessObserver;
}
@@ -163,6 +165,14 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread,
return compositor_thread_.get();
}
+ content::BrowserPluginRegistry* browser_plugin_registry() const {
+ return browser_plugin_registry_.get();
+ }
+
+ content::BrowserPluginChannelManager* browser_plugin_channel_manager() const {
+ return browser_plugin_channel_manager_.get();
+ }
+
AppCacheDispatcher* appcache_dispatcher() const {
return appcache_dispatcher_.get();
}
@@ -221,6 +231,8 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread,
scoped_ptr<DomStorageDispatcher> dom_storage_dispatcher_;
scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_;
scoped_ptr<RendererWebKitPlatformSupportImpl> webkit_platform_support_;
+ scoped_ptr<content::BrowserPluginChannelManager>
+ browser_plugin_channel_manager_;
// Used on the render thread and deleted by WebKit at shutdown.
content::MediaStreamCenter* media_stream_center_;
@@ -272,6 +284,7 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread,
bool compositor_initialized_;
scoped_ptr<CompositorThread> compositor_thread_;
+ scoped_ptr<content::BrowserPluginRegistry> browser_plugin_registry_;
ObserverList<content::RenderProcessObserver> observers_;
« no previous file with comments | « content/renderer/pepper/pepper_plugin_delegate_impl.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698