Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: chrome/browser/chromeos/policy/device_local_account_policy_service.h

Issue 109743002: Move policy code into components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moar fixes Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_SERVICE_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_SERVICE_H_
6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_SERVICE_H_ 6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_SERVICE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
17 #include "base/observer_list.h" 17 #include "base/observer_list.h"
18 #include "chrome/browser/chromeos/extensions/device_local_account_external_polic y_loader.h" 18 #include "chrome/browser/chromeos/extensions/device_local_account_external_polic y_loader.h"
19 #include "chrome/browser/chromeos/policy/device_local_account_external_data_mana ger.h" 19 #include "chrome/browser/chromeos/policy/device_local_account_external_data_mana ger.h"
20 #include "chrome/browser/chromeos/settings/cros_settings.h" 20 #include "chrome/browser/chromeos/settings/cros_settings.h"
21 #include "chrome/browser/policy/cloud/cloud_policy_core.h" 21 #include "components/policy/core/common/cloud/cloud_policy_core.h"
22 #include "chrome/browser/policy/cloud/cloud_policy_store.h" 22 #include "components/policy/core/common/cloud/cloud_policy_store.h"
23 23
24 namespace base { 24 namespace base {
25 class SequencedTaskRunner; 25 class SequencedTaskRunner;
26 } 26 }
27 27
28 namespace chromeos { 28 namespace chromeos {
29 class DeviceSettingsService; 29 class DeviceSettingsService;
30 class SessionManagerClient; 30 class SessionManagerClient;
31 } 31 }
32 32
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 local_accounts_subscription_; 230 local_accounts_subscription_;
231 231
232 base::WeakPtrFactory<DeviceLocalAccountPolicyService> weak_factory_; 232 base::WeakPtrFactory<DeviceLocalAccountPolicyService> weak_factory_;
233 233
234 DISALLOW_COPY_AND_ASSIGN(DeviceLocalAccountPolicyService); 234 DISALLOW_COPY_AND_ASSIGN(DeviceLocalAccountPolicyService);
235 }; 235 };
236 236
237 } // namespace policy 237 } // namespace policy
238 238
239 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_SERVICE_H_ 239 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_POLICY_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698