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 #pragma once | |
8 | 7 |
9 #include "chrome/browser/extensions/extension_system.h" | 8 #include "chrome/browser/extensions/extension_system.h" |
10 | 9 |
11 class CommandLine; | 10 class CommandLine; |
12 class FilePath; | 11 class FilePath; |
13 namespace base { | 12 namespace base { |
14 class Time; | 13 class Time; |
15 } | 14 } |
16 | 15 |
17 // Test ExtensionSystem, for use with TestingProfile. | 16 // Test ExtensionSystem, for use with TestingProfile. |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 scoped_ptr<extensions::ExtensionPrefs> extension_prefs_; | 67 scoped_ptr<extensions::ExtensionPrefs> extension_prefs_; |
69 scoped_ptr<extensions::StateStore> state_store_; | 68 scoped_ptr<extensions::StateStore> state_store_; |
70 scoped_ptr<ExtensionService> extension_service_; | 69 scoped_ptr<ExtensionService> extension_service_; |
71 scoped_ptr<extensions::ManagementPolicy> management_policy_; | 70 scoped_ptr<extensions::ManagementPolicy> management_policy_; |
72 scoped_ptr<ExtensionProcessManager> extension_process_manager_; | 71 scoped_ptr<ExtensionProcessManager> extension_process_manager_; |
73 scoped_ptr<extensions::AlarmManager> alarm_manager_; | 72 scoped_ptr<extensions::AlarmManager> alarm_manager_; |
74 scoped_refptr<ExtensionInfoMap> info_map_; | 73 scoped_refptr<ExtensionInfoMap> info_map_; |
75 }; | 74 }; |
76 | 75 |
77 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ | 76 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ |
OLD | NEW |