| 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 "extensions/browser/extension_system.h" | 8 #include "extensions/browser/extension_system.h" |
| 9 #include "extensions/common/one_shot_event.h" | 9 #include "extensions/common/one_shot_event.h" |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 virtual ManagementPolicy* management_policy() OVERRIDE; | 66 virtual ManagementPolicy* management_policy() OVERRIDE; |
| 67 virtual SharedUserScriptMaster* shared_user_script_master() OVERRIDE; | 67 virtual SharedUserScriptMaster* shared_user_script_master() OVERRIDE; |
| 68 virtual ProcessManager* process_manager() OVERRIDE; | 68 virtual ProcessManager* process_manager() OVERRIDE; |
| 69 virtual StateStore* state_store() OVERRIDE; | 69 virtual StateStore* state_store() OVERRIDE; |
| 70 virtual StateStore* rules_store() OVERRIDE; | 70 virtual StateStore* rules_store() OVERRIDE; |
| 71 TestingValueStore* value_store() { return value_store_; } | 71 TestingValueStore* value_store() { return value_store_; } |
| 72 virtual InfoMap* info_map() OVERRIDE; | 72 virtual InfoMap* info_map() OVERRIDE; |
| 73 virtual LazyBackgroundTaskQueue* lazy_background_task_queue() OVERRIDE; | 73 virtual LazyBackgroundTaskQueue* lazy_background_task_queue() OVERRIDE; |
| 74 void SetEventRouter(scoped_ptr<EventRouter> event_router); | 74 void SetEventRouter(scoped_ptr<EventRouter> event_router); |
| 75 virtual EventRouter* event_router() OVERRIDE; | 75 virtual EventRouter* event_router() OVERRIDE; |
| 76 virtual ExtensionWarningService* warning_service() OVERRIDE; | 76 virtual WarningService* warning_service() OVERRIDE; |
| 77 virtual Blacklist* blacklist() OVERRIDE; | 77 virtual Blacklist* blacklist() OVERRIDE; |
| 78 virtual ErrorConsole* error_console() OVERRIDE; | 78 virtual ErrorConsole* error_console() OVERRIDE; |
| 79 virtual InstallVerifier* install_verifier() OVERRIDE; | 79 virtual InstallVerifier* install_verifier() OVERRIDE; |
| 80 virtual QuotaService* quota_service() OVERRIDE; | 80 virtual QuotaService* quota_service() OVERRIDE; |
| 81 virtual const OneShotEvent& ready() const OVERRIDE; | 81 virtual const OneShotEvent& ready() const OVERRIDE; |
| 82 virtual ContentVerifier* content_verifier() OVERRIDE; | 82 virtual ContentVerifier* content_verifier() OVERRIDE; |
| 83 virtual scoped_ptr<ExtensionSet> GetDependentExtensions( | 83 virtual scoped_ptr<ExtensionSet> GetDependentExtensions( |
| 84 const Extension* extension) OVERRIDE; | 84 const Extension* extension) OVERRIDE; |
| 85 virtual DeclarativeUserScriptMaster* | 85 virtual DeclarativeUserScriptMaster* |
| 86 GetDeclarativeUserScriptMasterByExtension( | 86 GetDeclarativeUserScriptMasterByExtension( |
| (...skipping 24 matching lines...) Expand all Loading... |
| 111 scoped_ptr<EventRouter> event_router_; | 111 scoped_ptr<EventRouter> event_router_; |
| 112 scoped_ptr<ErrorConsole> error_console_; | 112 scoped_ptr<ErrorConsole> error_console_; |
| 113 scoped_ptr<InstallVerifier> install_verifier_; | 113 scoped_ptr<InstallVerifier> install_verifier_; |
| 114 scoped_ptr<QuotaService> quota_service_; | 114 scoped_ptr<QuotaService> quota_service_; |
| 115 OneShotEvent ready_; | 115 OneShotEvent ready_; |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace extensions | 118 } // namespace extensions |
| 119 | 119 |
| 120 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ | 120 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_ |
| OLD | NEW |