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

Unified Diff: content/renderer/renderer_main.cc

Issue 10868012: Browser Plugin: New Implementation (Browser Side) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master-trial-obrowser
Patch Set: Rename class as we agreed upon, keep correct type of instances (guest/embedder, not helpers) inside… 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
Index: content/renderer/renderer_main.cc
diff --git a/content/renderer/renderer_main.cc b/content/renderer/renderer_main.cc
index a84a3cbf813945fedfe3b2657b6c5c089fc9fce8..b95092d4a63fd5160c857bf988a5780a737aae79 100644
--- a/content/renderer/renderer_main.cc
+++ b/content/renderer/renderer_main.cc
@@ -23,6 +23,7 @@
#include "content/public/common/content_switches.h"
#include "content/public/common/main_function_params.h"
#include "content/public/renderer/content_renderer_client.h"
+#include "content/renderer/browser_plugin/browser_plugin_manager_impl.h"
#include "content/renderer/render_process_impl.h"
#include "content/renderer/render_thread_impl.h"
#include "content/renderer/renderer_main_platform_delegate.h"
@@ -213,6 +214,7 @@ int RendererMain(const content::MainFunctionParams& parameters) {
RenderProcessImpl render_process;
new RenderThreadImpl();
#endif
+ new content::BrowserPluginManagerImpl();
Charlie Reis 2012/08/27 20:23:59 Why is this necessary, but wasn't before? Just a
lazyboy 2012/08/28 19:07:14 I believe this is what triggers the renderer side
Fady Samuel 2012/08/29 08:16:20 Yup, there was no BrowserPluginManager instantiate
platform.RunSandboxTests();

Powered by Google App Engine
This is Rietveld 408576698