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

Unified Diff: chrome/browser/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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/device_cloud_policy_manager_chromeos.h
diff --git a/chrome/browser/policy/device_cloud_policy_manager_chromeos.h b/chrome/browser/policy/device_cloud_policy_manager_chromeos.h
deleted file mode 100644
index df50729adb4a2bfe8cc6f00843e1b20268a3ccb0..0000000000000000000000000000000000000000
--- a/chrome/browser/policy/device_cloud_policy_manager_chromeos.h
+++ /dev/null
@@ -1,99 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H_
-#define CHROME_BROWSER_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H_
-
-#include <bitset>
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/callback.h"
-#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
-#include "chrome/browser/policy/cloud_policy_client.h"
-#include "chrome/browser/policy/cloud_policy_manager.h"
-#include "chrome/browser/policy/cloud_policy_store.h"
-#include "chrome/browser/policy/enrollment_status_chromeos.h"
-
-class PrefService;
-
-namespace policy {
-
-class DeviceCloudPolicyStoreChromeOS;
-class DeviceManagementService;
-class EnrollmentHandlerChromeOS;
-class EnterpriseInstallAttributes;
-
-// CloudPolicyManager specialization for device policy on Chrome OS. The most
-// significant addition is support for device enrollment.
-class DeviceCloudPolicyManagerChromeOS : public CloudPolicyManager {
- public:
- typedef std::bitset<32> AllowedDeviceModes;
- typedef base::Callback<void(EnrollmentStatus)> EnrollmentCallback;
-
- DeviceCloudPolicyManagerChromeOS(
- scoped_ptr<DeviceCloudPolicyStoreChromeOS> store,
- EnterpriseInstallAttributes* install_attributes);
- virtual ~DeviceCloudPolicyManagerChromeOS();
-
- // Establishes the connection to the cloud, updating policy as necessary.
- void Connect(
- PrefService* local_state,
- DeviceManagementService* device_management_service,
- scoped_ptr<CloudPolicyClient::StatusProvider> device_status_provider);
-
- // Starts enrollment or re-enrollment. Once the enrollment process completes,
- // |callback| is invoked and gets passed the status of the operation.
- // |allowed_modes| specifies acceptable DEVICE_MODE_* constants for
- // enrollment.
- void StartEnrollment(const std::string& auth_token,
- bool is_auto_enrollment,
- const AllowedDeviceModes& allowed_modes,
- const EnrollmentCallback& callback);
-
- // Cancels a pending enrollment operation, if any.
- void CancelEnrollment();
-
- // CloudPolicyStore::Observer:
- virtual void OnStoreLoaded(CloudPolicyStore* store) OVERRIDE;
-
- // Returns the device serial number, or an empty string if not available.
- static std::string GetMachineID();
-
- // Returns the machine model, or an empty string if not available.
- static std::string GetMachineModel();
-
- private:
- // Creates a new CloudPolicyClient.
- scoped_ptr<CloudPolicyClient> CreateClient();
-
- // Starts policy refreshes if |store_| indicates a managed device and the
- // necessary dependencies have been provided via Initialize().
- void StartIfManaged();
-
- // Handles completion signaled by |enrollment_handler_|.
- void EnrollmentCompleted(const EnrollmentCallback& callback,
- EnrollmentStatus status);
-
- // Points to the same object as the base CloudPolicyManager::store(), but with
- // actual device policy specific type.
- scoped_ptr<DeviceCloudPolicyStoreChromeOS> device_store_;
- EnterpriseInstallAttributes* install_attributes_;
-
- DeviceManagementService* device_management_service_;
- scoped_ptr<CloudPolicyClient::StatusProvider> device_status_provider_;
-
- // PrefService instance to read the policy refresh rate from.
- PrefService* local_state_;
-
- // Non-null if there is an enrollment operation pending.
- scoped_ptr<EnrollmentHandlerChromeOS> enrollment_handler_;
-
- DISALLOW_COPY_AND_ASSIGN(DeviceCloudPolicyManagerChromeOS);
-};
-
-} // namespace policy
-
-#endif // CHROME_BROWSER_POLICY_DEVICE_CLOUD_POLICY_MANAGER_CHROMEOS_H_

Powered by Google App Engine
This is Rietveld 408576698