summaryrefslogtreecommitdiffstats
path: root/chrome/browser/apps/app_browsertest_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/apps/app_browsertest_util.h')
-rw-r--r--chrome/browser/apps/app_browsertest_util.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/apps/app_browsertest_util.h b/chrome/browser/apps/app_browsertest_util.h
index 6c1c3c8..6dc8da8 100644
--- a/chrome/browser/apps/app_browsertest_util.h
+++ b/chrome/browser/apps/app_browsertest_util.h
@@ -9,12 +9,15 @@
#include "chrome/browser/extensions/extension_apitest.h"
#include "content/public/common/page_transition_types.h"
+namespace base {
+class CommandLine;
+}
+
namespace content {
class WebContents;
}
class Browser;
-class CommandLine;
namespace extensions {
class Extension;
@@ -23,7 +26,7 @@ class PlatformAppBrowserTest : public ExtensionApiTest {
public:
PlatformAppBrowserTest();
- virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
+ virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
// Gets the first app window that is found for a given browser.
static apps::AppWindow* GetFirstAppWindowForBrowser(Browser* browser);
@@ -107,7 +110,7 @@ class PlatformAppBrowserTest : public ExtensionApiTest {
class ExperimentalPlatformAppBrowserTest : public PlatformAppBrowserTest {
public:
- virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
+ virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
};
} // namespace extensions