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

Unified Diff: chrome/browser/policy/user_cloud_policy_manager_chromeos.cc

Issue 12189011: Split up chrome/browser/policy subdirectory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 10 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/user_cloud_policy_manager_chromeos.cc
diff --git a/chrome/browser/policy/user_cloud_policy_manager_chromeos.cc b/chrome/browser/policy/user_cloud_policy_manager_chromeos.cc
deleted file mode 100644
index d73b6f1828b2c2abca4749b0ea738ccaf805b205..0000000000000000000000000000000000000000
--- a/chrome/browser/policy/user_cloud_policy_manager_chromeos.cc
+++ /dev/null
@@ -1,133 +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.
-
-#include "chrome/browser/policy/user_cloud_policy_manager_chromeos.h"
-
-#include "base/bind.h"
-#include "base/bind_helpers.h"
-#include "chrome/browser/policy/cloud_policy_service.h"
-#include "chrome/common/pref_names.h"
-
-namespace em = enterprise_management;
-
-namespace policy {
-
-UserCloudPolicyManagerChromeOS::UserCloudPolicyManagerChromeOS(
- scoped_ptr<CloudPolicyStore> store,
- bool wait_for_policy_fetch)
- : CloudPolicyManager(
- PolicyNamespaceKey(dm_protocol::kChromeUserPolicyType, std::string()),
- store.get()),
- store_(store.Pass()),
- wait_for_policy_fetch_(wait_for_policy_fetch) {}
-
-UserCloudPolicyManagerChromeOS::~UserCloudPolicyManagerChromeOS() {}
-
-void UserCloudPolicyManagerChromeOS::Connect(
- PrefService* local_state,
- DeviceManagementService* device_management_service,
- UserAffiliation user_affiliation) {
- DCHECK(device_management_service);
- DCHECK(local_state);
- local_state_ = local_state;
- scoped_ptr<CloudPolicyClient> cloud_policy_client(
- new CloudPolicyClient(std::string(), std::string(), user_affiliation,
- NULL, device_management_service));
- core()->Connect(cloud_policy_client.Pass());
- client()->AddObserver(this);
-
- if (wait_for_policy_fetch_) {
- // If we are supposed to wait for a policy fetch, we trigger an explicit
- // policy refresh at startup that allows us to unblock initialization once
- // done. The refresh scheduler only gets started once that refresh
- // completes. Note that we might have to wait for registration to happen,
- // see OnRegistrationStateChanged() below.
- if (client()->is_registered()) {
- service()->RefreshPolicy(
- base::Bind(
- &UserCloudPolicyManagerChromeOS::OnInitialPolicyFetchComplete,
- base::Unretained(this)));
- }
- } else {
- CancelWaitForPolicyFetch();
- }
-}
-
-void UserCloudPolicyManagerChromeOS::CancelWaitForPolicyFetch() {
- wait_for_policy_fetch_ = false;
- CheckAndPublishPolicy();
-
- // Now that |wait_for_policy_fetch_| is guaranteed to be false, the scheduler
- // can be started.
- if (service() && local_state_) {
- core()->StartRefreshScheduler();
- core()->TrackRefreshDelayPref(local_state_, prefs::kUserPolicyRefreshRate);
- }
-}
-
-bool UserCloudPolicyManagerChromeOS::IsClientRegistered() const {
- return client() && client()->is_registered();
-}
-
-void UserCloudPolicyManagerChromeOS::RegisterClient(
- const std::string& access_token) {
- DCHECK(client()) << "Callers must invoke Initialize() first";
- if (!client()->is_registered()) {
- DVLOG(1) << "Registering client with access token: " << access_token;
- client()->Register(em::DeviceRegisterRequest::USER,
- access_token, std::string(), false);
- }
-}
-
-void UserCloudPolicyManagerChromeOS::Shutdown() {
- if (client())
- client()->RemoveObserver(this);
- CloudPolicyManager::Shutdown();
-}
-
-bool UserCloudPolicyManagerChromeOS::IsInitializationComplete(
- PolicyDomain domain) const {
- if (!CloudPolicyManager::IsInitializationComplete(domain))
- return false;
- if (domain == POLICY_DOMAIN_CHROME)
- return !wait_for_policy_fetch_;
- return true;
-}
-
-void UserCloudPolicyManagerChromeOS::OnPolicyFetched(
- CloudPolicyClient* client) {
- // No action required. If we're blocked on a policy fetch, we'll learn about
- // completion of it through OnInitialPolicyFetchComplete().
-}
-
-void UserCloudPolicyManagerChromeOS::OnRegistrationStateChanged(
- CloudPolicyClient* cloud_policy_client) {
- DCHECK_EQ(client(), cloud_policy_client);
- if (wait_for_policy_fetch_) {
- // If we're blocked on the policy fetch, now is a good time to issue it.
- if (client()->is_registered()) {
- service()->RefreshPolicy(
- base::Bind(
- &UserCloudPolicyManagerChromeOS::OnInitialPolicyFetchComplete,
- base::Unretained(this)));
- } else {
- // If the client has switched to not registered, we bail out as this
- // indicates the cloud policy setup flow has been aborted.
- CancelWaitForPolicyFetch();
- }
- }
-}
-
-void UserCloudPolicyManagerChromeOS::OnClientError(
- CloudPolicyClient* cloud_policy_client) {
- DCHECK_EQ(client(), cloud_policy_client);
- CancelWaitForPolicyFetch();
-}
-
-void UserCloudPolicyManagerChromeOS::OnInitialPolicyFetchComplete(
- bool success) {
- CancelWaitForPolicyFetch();
-}
-
-} // namespace policy

Powered by Google App Engine
This is Rietveld 408576698