| 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" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 std::unique_ptr<InstallGate> update_install_gate_; | 127 std::unique_ptr<InstallGate> update_install_gate_; |
| 128 | 128 |
| 129 // For verifying the contents of extensions read from disk. | 129 // For verifying the contents of extensions read from disk. |
| 130 scoped_refptr<ContentVerifier> content_verifier_; | 130 scoped_refptr<ContentVerifier> content_verifier_; |
| 131 | 131 |
| 132 std::unique_ptr<UninstallPingSender> uninstall_ping_sender_; | 132 std::unique_ptr<UninstallPingSender> uninstall_ping_sender_; |
| 133 | 133 |
| 134 #if defined(OS_CHROMEOS) | 134 #if defined(OS_CHROMEOS) |
| 135 std::unique_ptr<chromeos::DeviceLocalAccountManagementPolicyProvider> | 135 std::unique_ptr<chromeos::DeviceLocalAccountManagementPolicyProvider> |
| 136 device_local_account_management_policy_provider_; | 136 device_local_account_management_policy_provider_; |
| 137 std::unique_ptr<InstallGate> kiosk_app_update_install_gate_; |
| 137 #endif | 138 #endif |
| 138 | 139 |
| 139 OneShotEvent ready_; | 140 OneShotEvent ready_; |
| 140 }; | 141 }; |
| 141 | 142 |
| 142 Profile* profile_; | 143 Profile* profile_; |
| 143 | 144 |
| 144 Shared* shared_; | 145 Shared* shared_; |
| 145 | 146 |
| 146 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); | 147 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); |
| 147 }; | 148 }; |
| 148 | 149 |
| 149 } // namespace extensions | 150 } // namespace extensions |
| 150 | 151 |
| 151 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 152 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| OLD | NEW |