| 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; | |
| 17 | 16 |
| 18 #if defined(OS_CHROMEOS) | 17 #if defined(OS_CHROMEOS) |
| 19 namespace chromeos { | 18 namespace chromeos { |
| 20 class DeviceLocalAccountManagementPolicyProvider; | 19 class DeviceLocalAccountManagementPolicyProvider; |
| 21 class SigninScreenPolicyProvider; | 20 class SigninScreenPolicyProvider; |
| 22 } | 21 } |
| 23 #endif // defined(OS_CHROMEOS) | 22 #endif // defined(OS_CHROMEOS) |
| 24 | 23 |
| 25 namespace extensions { | 24 namespace extensions { |
| 26 | 25 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 Profile* profile_; | 151 Profile* profile_; |
| 153 | 152 |
| 154 Shared* shared_; | 153 Shared* shared_; |
| 155 | 154 |
| 156 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); | 155 DISALLOW_COPY_AND_ASSIGN(ExtensionSystemImpl); |
| 157 }; | 156 }; |
| 158 | 157 |
| 159 } // namespace extensions | 158 } // namespace extensions |
| 160 | 159 |
| 161 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ | 160 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_ |
| OLD | NEW |