| Index: chrome/test/base/in_process_browser_test.cc
|
| diff --git a/chrome/test/base/in_process_browser_test.cc b/chrome/test/base/in_process_browser_test.cc
|
| index a4f2126ba646946da2ed2680137c9b3119301f71..48b71dd2b46205f95d462440462f7ecd2ad3116c 100644
|
| --- a/chrome/test/base/in_process_browser_test.cc
|
| +++ b/chrome/test/base/in_process_browser_test.cc
|
| @@ -135,7 +135,6 @@ InProcessBrowserTest::InProcessBrowserTest()
|
| : browser_(NULL),
|
| exit_when_last_browser_closes_(true),
|
| open_about_blank_on_browser_launch_(true),
|
| - multi_desktop_test_(false),
|
| run_accessibility_checks_for_test_case_(false)
|
| #if defined(OS_MACOSX)
|
| , autorelease_pool_(NULL)
|
| @@ -196,7 +195,7 @@ void InProcessBrowserTest::SetUp() {
|
| // Allow subclasses to change the command line before running any tests.
|
| SetUpCommandLine(command_line);
|
| // Add command line arguments that are used by all InProcessBrowserTests.
|
| - PrepareTestCommandLine(command_line);
|
| + SetUpDefaultCommandLine(command_line);
|
|
|
| // Create a temporary user data directory if required.
|
| ASSERT_TRUE(CreateUserDataDirectory())
|
| @@ -241,7 +240,7 @@ void InProcessBrowserTest::SetUp() {
|
| BrowserTestBase::SetUp();
|
| }
|
|
|
| -void InProcessBrowserTest::PrepareTestCommandLine(
|
| +void InProcessBrowserTest::SetUpDefaultCommandLine(
|
| base::CommandLine* command_line) {
|
| // Propagate commandline settings from test_launcher_utils.
|
| test_launcher_utils::PrepareBrowserCommandLineForTests(command_line);
|
|
|