| 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 EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ | 5 #ifndef EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ |
| 6 #define EXTENSIONS_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" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 class ShellExtensionSystem; | 22 class ShellExtensionSystem; |
| 23 | 23 |
| 24 // Base class for app shell browser tests. | 24 // Base class for app shell browser tests. |
| 25 class AppShellTest : public content::BrowserTestBase { | 25 class AppShellTest : public content::BrowserTestBase { |
| 26 public: | 26 public: |
| 27 AppShellTest(); | 27 AppShellTest(); |
| 28 virtual ~AppShellTest(); | 28 virtual ~AppShellTest(); |
| 29 | 29 |
| 30 // content::BrowserTestBase implementation. | 30 // content::BrowserTestBase implementation. |
| 31 virtual void SetUp() OVERRIDE; | 31 virtual void SetUp() override; |
| 32 virtual void SetUpOnMainThread() OVERRIDE; | 32 virtual void SetUpOnMainThread() override; |
| 33 virtual void RunTestOnMainThreadLoop() OVERRIDE; | 33 virtual void RunTestOnMainThreadLoop() override; |
| 34 | 34 |
| 35 content::BrowserContext* browser_context() { return browser_context_; } | 35 content::BrowserContext* browser_context() { return browser_context_; } |
| 36 | 36 |
| 37 protected: | 37 protected: |
| 38 content::BrowserContext* browser_context_; | 38 content::BrowserContext* browser_context_; |
| 39 ShellExtensionSystem* extension_system_; | 39 ShellExtensionSystem* extension_system_; |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace extensions | 42 } // namespace extensions |
| 43 | 43 |
| 44 #endif // EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ | 44 #endif // EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ |
| OLD | NEW |