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_TEST_EXTENSION_SYSTEM_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ |
7 | 7 |
8 #include "chrome/browser/extensions/extension_system.h" | 8 #include "extensions/browser/extension_system.h" |
9 | 9 |
10 class CommandLine; | 10 class CommandLine; |
11 class TestingValueStore; | 11 class TestingValueStore; |
12 | 12 |
13 namespace base { | 13 namespace base { |
14 class FilePath; | 14 class FilePath; |
15 class Time; | 15 class Time; |
16 } | 16 } |
17 | 17 |
18 namespace content { | 18 namespace content { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 scoped_ptr<ProcessManager> process_manager_; | 97 scoped_ptr<ProcessManager> process_manager_; |
98 scoped_refptr<InfoMap> info_map_; | 98 scoped_refptr<InfoMap> info_map_; |
99 scoped_ptr<ErrorConsole> error_console_; | 99 scoped_ptr<ErrorConsole> error_console_; |
100 scoped_ptr<InstallVerifier> install_verifier_; | 100 scoped_ptr<InstallVerifier> install_verifier_; |
101 OneShotEvent ready_; | 101 OneShotEvent ready_; |
102 }; | 102 }; |
103 | 103 |
104 } // namespace extensions | 104 } // namespace extensions |
105 | 105 |
106 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ | 106 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ |
OLD | NEW |