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

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

Issue 12189011: Split up chrome/browser/policy subdirectory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, add chrome/browser/chromeos/policy/OWNERS Created 7 years, 9 months 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_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H_
6 #define CHROME_BROWSER_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H_ 6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H_
7 7
8 #include <bitset> 8 #include <bitset>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "chrome/browser/policy/cloud_policy_client.h" 15 #include "chrome/browser/chromeos/policy/enrollment_status_chromeos.h"
16 #include "chrome/browser/policy/cloud_policy_manager.h" 16 #include "chrome/browser/policy/cloud/cloud_policy_client.h"
17 #include "chrome/browser/policy/cloud_policy_store.h" 17 #include "chrome/browser/policy/cloud/cloud_policy_manager.h"
18 #include "chrome/browser/policy/enrollment_status_chromeos.h" 18 #include "chrome/browser/policy/cloud/cloud_policy_store.h"
19 19
20 class PrefService; 20 class PrefService;
21 21
22 namespace policy { 22 namespace policy {
23 23
24 class DeviceCloudPolicyStoreChromeOS; 24 class DeviceCloudPolicyStoreChromeOS;
25 class DeviceManagementService; 25 class DeviceManagementService;
26 class EnrollmentHandlerChromeOS; 26 class EnrollmentHandlerChromeOS;
27 class EnterpriseInstallAttributes; 27 class EnterpriseInstallAttributes;
28 28
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 PrefService* local_state_; 89 PrefService* local_state_;
90 90
91 // Non-null if there is an enrollment operation pending. 91 // Non-null if there is an enrollment operation pending.
92 scoped_ptr<EnrollmentHandlerChromeOS> enrollment_handler_; 92 scoped_ptr<EnrollmentHandlerChromeOS> enrollment_handler_;
93 93
94 DISALLOW_COPY_AND_ASSIGN(DeviceCloudPolicyManagerChromeOS); 94 DISALLOW_COPY_AND_ASSIGN(DeviceCloudPolicyManagerChromeOS);
95 }; 95 };
96 96
97 } // namespace policy 97 } // namespace policy
98 98
99 #endif // CHROME_BROWSER_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H_ 99 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698