Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_PLATFORM_APP_BROWSERTEST_UTIL_H_ | 5 #ifndef CHROME_BROWSER_APPS_APP_BROWSERTEST_UTIL_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_PLATFORM_APP_BROWSERTEST_UTIL_H_ | 6 #define CHROME_BROWSER_APPS_APP_BROWSERTEST_UTIL_H_ |
| 7 | 7 |
|
tapted
2013/08/14 01:55:46
nit: there's an extra line here
| |
| 8 | 8 |
| 9 #include "apps/shell_window.h" | 9 #include "apps/shell_window.h" |
| 10 #include "chrome/browser/extensions/extension_apitest.h" | 10 #include "chrome/browser/extensions/extension_apitest.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 class WebContents; | 13 class WebContents; |
| 14 } | 14 } |
| 15 | 15 |
| 16 class CommandLine; | 16 class CommandLine; |
| 17 | 17 |
| 18 namespace extensions { | 18 namespace extensions { |
|
tapted
2013/08/14 01:55:46
Should we move extensions::PlatformAppBrowserTest
| |
| 19 class Extension; | 19 class Extension; |
| 20 | 20 |
| 21 class PlatformAppBrowserTest : public ExtensionApiTest { | 21 class PlatformAppBrowserTest : public ExtensionApiTest { |
| 22 public: | 22 public: |
| 23 PlatformAppBrowserTest(); | 23 PlatformAppBrowserTest(); |
| 24 | 24 |
| 25 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; | 25 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; |
| 26 | 26 |
| 27 protected: | 27 protected: |
| 28 // Runs the app named |name| out of the platform_apps subdirectory. Waits | 28 // Runs the app named |name| out of the platform_apps subdirectory. Waits |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 82 gfx::Rect* bounds); | 82 gfx::Rect* bounds); |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 class ExperimentalPlatformAppBrowserTest : public PlatformAppBrowserTest { | 85 class ExperimentalPlatformAppBrowserTest : public PlatformAppBrowserTest { |
| 86 public: | 86 public: |
| 87 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; | 87 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 } // namespace extensions | 90 } // namespace extensions |
| 91 | 91 |
| 92 #endif // CHROME_BROWSER_EXTENSIONS_PLATFORM_APP_BROWSERTEST_UTIL_H_ | 92 #endif // CHROME_BROWSER_APPS_APP_BROWSERTEST_UTIL_H_ |
| OLD | NEW |