| Index: chrome/browser/task_manager/task_manager_browsertest.cc
|
| diff --git a/chrome/browser/task_manager/task_manager_browsertest.cc b/chrome/browser/task_manager/task_manager_browsertest.cc
|
| index 25dc0ecd162f93a733268a0e289bb749477ffaeb..1d5d69cbe3874ea441b34c3e7a48ba43943ff2ab 100644
|
| --- a/chrome/browser/task_manager/task_manager_browsertest.cc
|
| +++ b/chrome/browser/task_manager/task_manager_browsertest.cc
|
| @@ -113,7 +113,7 @@ class TaskManagerBrowserTest : public ExtensionBrowserTest {
|
| }
|
|
|
| protected:
|
| - void SetUpCommandLine(CommandLine* command_line) override {
|
| + void SetUpCommandLine(base::CommandLine* command_line) override {
|
| ExtensionBrowserTest::SetUpCommandLine(command_line);
|
|
|
| // Do not launch device discovery process.
|
| @@ -132,14 +132,14 @@ class TaskManagerOOPIFBrowserTest : public TaskManagerBrowserTest,
|
| TaskManagerOOPIFBrowserTest() {}
|
|
|
| protected:
|
| - void SetUpCommandLine(CommandLine* command_line) override {
|
| + void SetUpCommandLine(base::CommandLine* command_line) override {
|
| TaskManagerBrowserTest::SetUpCommandLine(command_line);
|
| if (GetParam())
|
| command_line->AppendSwitch(switches::kSitePerProcess);
|
| }
|
|
|
| bool ShouldExpectSubframes() {
|
| - return CommandLine::ForCurrentProcess()->HasSwitch(
|
| + return base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kSitePerProcess);
|
| }
|
|
|
|
|