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

Unified Diff: content/renderer/render_thread_impl.h

Issue 10829219: Browser Plugin: Move to old namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style fix. Created 8 years, 4 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 eaddfc84d8d422d9db19e0a199e2f87b144d00bf..091d25698cfd9ba8dae770cfc1b2d2a261de36f7 100644
--- a/content/renderer/render_thread_impl.h
+++ b/content/renderer/render_thread_impl.h
@@ -54,10 +54,14 @@ class ScopedCOMInitializer;
namespace content {
class AudioRendererMixerManager;
-class BrowserPluginChannelManager;
-class BrowserPluginRegistry;
class MediaStreamCenter;
class RenderProcessObserver;
+
+namespace old {
+class BrowserPluginChannelManager;
+class BrowserPluginRegistry;
+}
+
}
namespace v8 {
@@ -165,11 +169,12 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread,
return compositor_thread_.get();
}
- content::BrowserPluginRegistry* browser_plugin_registry() const {
+ content::old::BrowserPluginRegistry* browser_plugin_registry() const {
return browser_plugin_registry_.get();
}
- content::BrowserPluginChannelManager* browser_plugin_channel_manager() const {
+ content::old::BrowserPluginChannelManager*
+ browser_plugin_channel_manager() const {
return browser_plugin_channel_manager_.get();
}
@@ -245,7 +250,7 @@ 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>
+ scoped_ptr<content::old::BrowserPluginChannelManager>
browser_plugin_channel_manager_;
// Used on the render thread and deleted by WebKit at shutdown.
@@ -295,7 +300,7 @@ class CONTENT_EXPORT RenderThreadImpl : public content::RenderThread,
bool compositor_initialized_;
scoped_ptr<CompositorThread> compositor_thread_;
- scoped_ptr<content::BrowserPluginRegistry> browser_plugin_registry_;
+ scoped_ptr<content::old::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