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_BROWSER_SHELL_EXTENSION_SYSTEM_H_ | 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSION_SYSTEM_H_ |
6 #define EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSION_SYSTEM_H_ | 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSION_SYSTEM_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 void InitForRegularProfile(bool extensions_enabled) override; | 55 void InitForRegularProfile(bool extensions_enabled) override; |
56 ExtensionService* extension_service() override; | 56 ExtensionService* extension_service() override; |
57 RuntimeData* runtime_data() override; | 57 RuntimeData* runtime_data() override; |
58 ManagementPolicy* management_policy() override; | 58 ManagementPolicy* management_policy() override; |
59 SharedUserScriptMaster* shared_user_script_master() override; | 59 SharedUserScriptMaster* shared_user_script_master() override; |
60 StateStore* state_store() override; | 60 StateStore* state_store() override; |
61 StateStore* rules_store() override; | 61 StateStore* rules_store() override; |
62 InfoMap* info_map() override; | 62 InfoMap* info_map() override; |
63 LazyBackgroundTaskQueue* lazy_background_task_queue() override; | 63 LazyBackgroundTaskQueue* lazy_background_task_queue() override; |
64 EventRouter* event_router() override; | 64 EventRouter* event_router() override; |
65 WarningService* warning_service() override; | |
66 Blacklist* blacklist() override; | 65 Blacklist* blacklist() override; |
67 ErrorConsole* error_console() override; | 66 ErrorConsole* error_console() override; |
68 InstallVerifier* install_verifier() override; | 67 InstallVerifier* install_verifier() override; |
69 QuotaService* quota_service() override; | 68 QuotaService* quota_service() override; |
70 void RegisterExtensionWithRequestContexts( | 69 void RegisterExtensionWithRequestContexts( |
71 const Extension* extension) override; | 70 const Extension* extension) override; |
72 void UnregisterExtensionWithRequestContexts( | 71 void UnregisterExtensionWithRequestContexts( |
73 const std::string& extension_id, | 72 const std::string& extension_id, |
74 const UnloadedExtensionInfo::Reason reason) override; | 73 const UnloadedExtensionInfo::Reason reason) override; |
75 const OneShotEvent& ready() const override; | 74 const OneShotEvent& ready() const override; |
(...skipping 16 matching lines...) Expand all Loading... |
92 | 91 |
93 // Signaled when the extension system has completed its startup tasks. | 92 // Signaled when the extension system has completed its startup tasks. |
94 OneShotEvent ready_; | 93 OneShotEvent ready_; |
95 | 94 |
96 DISALLOW_COPY_AND_ASSIGN(ShellExtensionSystem); | 95 DISALLOW_COPY_AND_ASSIGN(ShellExtensionSystem); |
97 }; | 96 }; |
98 | 97 |
99 } // namespace extensions | 98 } // namespace extensions |
100 | 99 |
101 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSION_SYSTEM_H_ | 100 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSION_SYSTEM_H_ |
OLD | NEW |