summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/app/chrome_dll_main.cc2
-rw-r--r--chrome/browser/renderer_host/browser_render_process_host.cc2
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc
index 1e3e428..ef86970 100644
--- a/chrome/app/chrome_dll_main.cc
+++ b/chrome/app/chrome_dll_main.cc
@@ -320,6 +320,8 @@ int ChromeMain(int argc, const char** argv) {
bool single_process =
#if defined (GOOGLE_CHROME_BUILD)
+ // This is an unsupported and not fully tested mode, so don't enable it for
+ // official Chrome builds.
false;
#else
parsed_command_line.HasSwitch(switches::kSingleProcess);
diff --git a/chrome/browser/renderer_host/browser_render_process_host.cc b/chrome/browser/renderer_host/browser_render_process_host.cc
index 4d0849c..83a117d8 100644
--- a/chrome/browser/renderer_host/browser_render_process_host.cc
+++ b/chrome/browser/renderer_host/browser_render_process_host.cc
@@ -261,6 +261,8 @@ bool BrowserRenderProcessHost::Init() {
switches::kNoSandbox,
switches::kTestSandbox,
#if !defined (GOOGLE_CHROME_BUILD)
+ // This is an unsupported and not fully tested mode, so don't enable it for
+ // official Chrome builds.
switches::kInProcessPlugins,
#endif
switches::kDomAutomationController,