| Index: chrome/test/base/in_process_browser_test.h
|
| diff --git a/chrome/test/base/in_process_browser_test.h b/chrome/test/base/in_process_browser_test.h
|
| index add31c5755f6c01d69140b334b1c2e75f244f019..a64a47d349862b32cac8c1d2d9558d33ac5bce81 100644
|
| --- a/chrome/test/base/in_process_browser_test.h
|
| +++ b/chrome/test/base/in_process_browser_test.h
|
| @@ -15,6 +15,9 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace base {
|
| +
|
| +class CommandLine;
|
| +
|
| #if defined(OS_MACOSX)
|
| namespace mac {
|
| class ScopedNSAutoreleasePool;
|
| @@ -29,7 +32,6 @@ class ScopedCOMInitializer;
|
| } // namespace base
|
|
|
| class Browser;
|
| -class CommandLine;
|
| class Profile;
|
|
|
| namespace content {
|
| @@ -155,7 +157,7 @@ class InProcessBrowserTest : public content::BrowserTestBase {
|
| // the command line isn't a concept that we support on the Mac; AppleEvents
|
| // are the Mac solution for the same need. Any test based on these functions
|
| // doesn't apply to the Mac.
|
| - CommandLine GetCommandLineForRelaunch();
|
| + base::CommandLine GetCommandLineForRelaunch();
|
| #endif
|
|
|
| #if defined(OS_MACOSX)
|
| @@ -184,7 +186,7 @@ class InProcessBrowserTest : public content::BrowserTestBase {
|
|
|
| // Prepare command line that will be used to launch the child browser process
|
| // with an in-process test.
|
| - void PrepareTestCommandLine(CommandLine* command_line);
|
| + void PrepareTestCommandLine(base::CommandLine* command_line);
|
|
|
| // Browser created from CreateBrowser.
|
| Browser* browser_;
|
|
|