| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 APPS_SHELL_TEST_SHELL_TEST_H_ | 5 #ifndef EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ |
| 6 #define APPS_SHELL_TEST_SHELL_TEST_H_ | 6 #define EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "content/public/test/browser_test.h" | 9 #include "content/public/test/browser_test.h" |
| 10 #include "content/public/test/browser_test_base.h" | 10 #include "content/public/test/browser_test_base.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 class FilePath; | 13 class FilePath; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 class BrowserContext; | 17 class BrowserContext; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace extensions { | 20 namespace extensions { |
| 21 |
| 21 class ShellExtensionSystem; | 22 class ShellExtensionSystem; |
| 22 } | |
| 23 | |
| 24 namespace apps { | |
| 25 | 23 |
| 26 // Base class for app shell browser tests. | 24 // Base class for app shell browser tests. |
| 27 class AppShellTest : public content::BrowserTestBase { | 25 class AppShellTest : public content::BrowserTestBase { |
| 28 public: | 26 public: |
| 29 AppShellTest(); | 27 AppShellTest(); |
| 30 virtual ~AppShellTest(); | 28 virtual ~AppShellTest(); |
| 31 | 29 |
| 32 // content::BrowserTestBase implementation. | 30 // content::BrowserTestBase implementation. |
| 33 virtual void SetUp() OVERRIDE; | 31 virtual void SetUp() OVERRIDE; |
| 34 virtual void SetUpOnMainThread() OVERRIDE; | 32 virtual void SetUpOnMainThread() OVERRIDE; |
| 35 virtual void RunTestOnMainThreadLoop() OVERRIDE; | 33 virtual void RunTestOnMainThreadLoop() OVERRIDE; |
| 36 | 34 |
| 37 // Loads an unpacked application from a directory using |extension_system_| | 35 // Loads an unpacked application from a directory using |extension_system_| |
| 38 // and attempts to launch it. Returns true on success. | 36 // and attempts to launch it. Returns true on success. |
| 39 bool LoadAndLaunchApp(const base::FilePath& app_dir); | 37 bool LoadAndLaunchApp(const base::FilePath& app_dir); |
| 40 | 38 |
| 41 content::BrowserContext* browser_context() { return browser_context_; } | 39 content::BrowserContext* browser_context() { return browser_context_; } |
| 42 | 40 |
| 43 private: | 41 private: |
| 44 content::BrowserContext* browser_context_; | 42 content::BrowserContext* browser_context_; |
| 45 extensions::ShellExtensionSystem* extension_system_; | 43 ShellExtensionSystem* extension_system_; |
| 46 }; | 44 }; |
| 47 | 45 |
| 48 } // namespace apps | 46 } // namespace extensions |
| 49 | 47 |
| 50 #endif // APPS_SHELL_TEST_SHELL_TEST_H_ | 48 #endif // EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ |
| OLD | NEW |