| Index: content/public/test/content_browser_test.cc
|
| diff --git a/content/public/test/content_browser_test.cc b/content/public/test/content_browser_test.cc
|
| index 395975ad87e27f03fa7e28648797b06f678d5682..0408c8a5cc8480ffb2c5fd80d8dbc98c45d64609 100644
|
| --- a/content/public/test/content_browser_test.cc
|
| +++ b/content/public/test/content_browser_test.cc
|
| @@ -61,7 +61,7 @@ ContentBrowserTest::~ContentBrowserTest() {
|
| }
|
|
|
| void ContentBrowserTest::SetUp() {
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| command_line->AppendSwitch(switches::kContentBrowserTest);
|
|
|
| SetUpCommandLine(command_line);
|
| @@ -116,7 +116,8 @@ void ContentBrowserTest::TearDown() {
|
| }
|
|
|
| void ContentBrowserTest::RunTestOnMainThreadLoop() {
|
| - if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree)) {
|
| + if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kDumpRenderTree)) {
|
| CHECK_EQ(Shell::windows().size(), 1u);
|
| shell_ = Shell::windows()[0];
|
| }
|
|
|