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 <memory> |
| 9 |
9 #include "content/public/test/browser_test.h" | 10 #include "content/public/test/browser_test.h" |
10 #include "content/public/test/browser_test_base.h" | 11 #include "content/public/test/browser_test_base.h" |
11 | 12 |
12 namespace base { | 13 namespace base { |
13 class FilePath; | 14 class FilePath; |
14 } | 15 } |
15 | 16 |
16 namespace content { | 17 namespace content { |
17 class BrowserContext; | 18 class BrowserContext; |
18 } | 19 } |
(...skipping 16 matching lines...) Expand all Loading... |
35 content::BrowserContext* browser_context() { return browser_context_; } | 36 content::BrowserContext* browser_context() { return browser_context_; } |
36 | 37 |
37 protected: | 38 protected: |
38 content::BrowserContext* browser_context_; | 39 content::BrowserContext* browser_context_; |
39 ShellExtensionSystem* extension_system_; | 40 ShellExtensionSystem* extension_system_; |
40 }; | 41 }; |
41 | 42 |
42 } // namespace extensions | 43 } // namespace extensions |
43 | 44 |
44 #endif // EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ | 45 #endif // EXTENSIONS_SHELL_TEST_SHELL_TEST_H_ |
OLD | NEW |