From 7f74a4ee8538089c11895ff2f3b7110f3ca0061b Mon Sep 17 00:00:00 2001 From: "tim@chromium.org" Date: Thu, 30 Apr 2009 17:00:24 +0000 Subject: Fix issue 11006 - any plugin process started by InProcessBrowserTest was using the unit_test executable rather than chrome.exe. This patch repurposes the --renderer-path switch to be --browser-subprocess-path for both plugins and renderers. BUG=11006 TEST=Any InProcessBrowserTest (they all will start at least one renderer). Use NavigateToURL to a URL containing flash, we shouldn't crash. Review URL: http://codereview.chromium.org/99011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14951 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/chrome_switches.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/common/chrome_switches.cc') diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index ba4962e..0fb2a08 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -66,8 +66,8 @@ const wchar_t kHomePage[] = L"homepage"; // Causes the process to run as renderer instead of as browser. const wchar_t kRendererProcess[] = L"renderer"; -// Path to the exe to run for the renderer subprocess -const wchar_t kRendererPath[] = L"renderer-path"; +// Path to the exe to run for the renderer and plugin subprocesses. +const wchar_t kBrowserSubprocessPath[] = L"browser-subprocess-path"; // Causes the process to run as a plugin subprocess. const wchar_t kPluginProcess[] = L"plugin"; -- cgit v1.1