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_CHROMEOS_SETTINGS_DEVICE_SETTINGS_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_SERVICE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_SERVICE_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/linked_ptr.h" | 16 #include "base/memory/linked_ptr.h" |
17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
18 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
19 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h" | 19 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h" |
20 #include "chromeos/dbus/session_manager_client.h" | 20 #include "chromeos/dbus/session_manager_client.h" |
21 #include "components/ownership/owner_settings_service.h" | 21 #include "components/ownership/owner_settings_service.h" |
22 #include "components/policy/core/common/cloud/cloud_policy_validator.h" | 22 #include "components/policy/core/common/cloud/cloud_policy_validator.h" |
| 23 #include "components/policy/proto/device_management_backend.pb.h" |
23 #include "crypto/scoped_nss_types.h" | 24 #include "crypto/scoped_nss_types.h" |
24 #include "policy/proto/device_management_backend.pb.h" | |
25 | 25 |
26 namespace crypto { | 26 namespace crypto { |
27 class RSAPrivateKey; | 27 class RSAPrivateKey; |
28 } | 28 } |
29 | 29 |
30 namespace ownership { | 30 namespace ownership { |
31 class OwnerKeyUtil; | 31 class OwnerKeyUtil; |
32 class PublicKey; | 32 class PublicKey; |
33 } | 33 } |
34 | 34 |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 ScopedTestDeviceSettingsService(); | 236 ScopedTestDeviceSettingsService(); |
237 ~ScopedTestDeviceSettingsService(); | 237 ~ScopedTestDeviceSettingsService(); |
238 | 238 |
239 private: | 239 private: |
240 DISALLOW_COPY_AND_ASSIGN(ScopedTestDeviceSettingsService); | 240 DISALLOW_COPY_AND_ASSIGN(ScopedTestDeviceSettingsService); |
241 }; | 241 }; |
242 | 242 |
243 } // namespace chromeos | 243 } // namespace chromeos |
244 | 244 |
245 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_SERVICE_H_ | 245 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_SETTINGS_SERVICE_H_ |
OLD | NEW |