| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_APPS_APP_BROWSERTEST_UTIL_H_ | 5 #ifndef CHROME_BROWSER_APPS_APP_BROWSERTEST_UTIL_H_ |
| 6 #define CHROME_BROWSER_APPS_APP_BROWSERTEST_UTIL_H_ | 6 #define CHROME_BROWSER_APPS_APP_BROWSERTEST_UTIL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "chrome/browser/extensions/extension_apitest.h" | 11 #include "chrome/browser/extensions/extension_apitest.h" |
| 9 #include "extensions/browser/app_window/app_window.h" | 12 #include "extensions/browser/app_window/app_window.h" |
| 10 | 13 |
| 11 namespace base { | 14 namespace base { |
| 12 class CommandLine; | 15 class CommandLine; |
| 13 } | 16 } |
| 14 | 17 |
| 15 namespace content { | 18 namespace content { |
| 16 class WebContents; | 19 class WebContents; |
| 17 } | 20 } |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 }; | 118 }; |
| 116 | 119 |
| 117 class ExperimentalPlatformAppBrowserTest : public PlatformAppBrowserTest { | 120 class ExperimentalPlatformAppBrowserTest : public PlatformAppBrowserTest { |
| 118 public: | 121 public: |
| 119 void SetUpCommandLine(base::CommandLine* command_line) override; | 122 void SetUpCommandLine(base::CommandLine* command_line) override; |
| 120 }; | 123 }; |
| 121 | 124 |
| 122 } // namespace extensions | 125 } // namespace extensions |
| 123 | 126 |
| 124 #endif // CHROME_BROWSER_APPS_APP_BROWSERTEST_UTIL_H_ | 127 #endif // CHROME_BROWSER_APPS_APP_BROWSERTEST_UTIL_H_ |
| OLD | NEW |