| 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 12 #include "extensions/browser/extension_system.h" | 12 #include "extensions/browser/extension_system.h" |
| 13 #include "extensions/common/one_shot_event.h" | 13 #include "extensions/common/one_shot_event.h" |
| 14 | 14 |
| 15 class Profile; | 15 class Profile; |
| 16 class ValueStore; | 16 class ValueStore; |
| 17 | 17 |
| 18 #if defined(OS_CHROMEOS) |
| 19 namespace chromeos { |
| 20 class DeviceLocalAccountManagementPolicyProvider; |
| 21 class SigninScreenPolicyProvider; |
| 22 } |
| 23 #endif // defined(OS_CHROMEOS) |
| 24 |
| 18 namespace extensions { | 25 namespace extensions { |
| 19 | 26 |
| 20 class ExtensionSystemSharedFactory; | 27 class ExtensionSystemSharedFactory; |
| 21 class NavigationObserver; | 28 class NavigationObserver; |
| 22 class StateStoreNotificationObserver; | 29 class StateStoreNotificationObserver; |
| 23 class UninstallPingSender; | 30 class UninstallPingSender; |
| 24 class InstallGate; | 31 class InstallGate; |
| 25 class ValueStoreFactory; | 32 class ValueStoreFactory; |
| 26 class ValueStoreFactoryImpl; | 33 class ValueStoreFactoryImpl; |
| 27 | 34 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 std::unique_ptr<InstallGate> update_install_gate_; | 134 std::unique_ptr<InstallGate> update_install_gate_; |
| 128 | 135 |
| 129 // For verifying the contents of extensions read from disk. | 136 // For verifying the contents of extensions read from disk. |
| 130 scoped_refptr<ContentVerifier> content_verifier_; | 137 scoped_refptr<ContentVerifier> content_verifier_; |
| 131 | 138 |
| 132 std::unique_ptr<UninstallPingSender> uninstall_ping_sender_; | 139 std::unique_ptr<UninstallPingSender> uninstall_ping_sender_; |
| 133 | 140 |
| 134 #if defined(OS_CHROMEOS) | 141 #if defined(OS_CHROMEOS) |
| 135 std::unique_ptr<chromeos::DeviceLocalAccountManagementPolicyProvider> | 142 std::unique_ptr<chromeos::DeviceLocalAccountManagementPolicyProvider> |
| 136 device_local_account_management_policy_provider_; | 143 device_local_account_management_policy_provider_; |
| 144 std::unique_ptr<chromeos::SigninScreenPolicyProvider> |
| 145 signin_screen_policy_provider_; |
| 137 std::unique_ptr<InstallGate> kiosk_app_update_install_gate_; | 146 std::unique_ptr<InstallGate> kiosk_app_update_install_gate_; |
| 138 #endif | 147 #endif |
| 139 | 148 |
| 140 OneShotEvent ready_; | 149 OneShotEvent ready_; |
| 141 }; | 150 }; |
| 142 | 151 |
| 143 Profile* profile_; | 152 Profile* profile_; |
| 144 | 153 |
| 145 Shared* shared_; | 154 Shared* shared_; |
| 146 | 155 |
| 147 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); | 156 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); |
| 148 }; | 157 }; |
| 149 | 158 |
| 150 } // namespace extensions | 159 } // namespace extensions |
| 151 | 160 |
| 152 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 161 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| OLD | NEW |