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

Side by Side Diff: chrome/browser/policy/user_cloud_policy_manager.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/policy/user_cloud_policy_manager.h"
6
7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "chrome/browser/policy/cloud_policy_constants.h"
10 #include "chrome/browser/policy/cloud_policy_service.h"
11 #include "chrome/browser/policy/policy_types.h"
12 #include "chrome/browser/policy/user_cloud_policy_manager_factory.h"
13 #include "chrome/browser/policy/user_cloud_policy_store.h"
14 #include "chrome/common/pref_names.h"
15
16 namespace em = enterprise_management;
17
18 namespace policy {
19
20 UserCloudPolicyManager::UserCloudPolicyManager(
21 Profile* profile,
22 scoped_ptr<UserCloudPolicyStore> store)
23 : CloudPolicyManager(
24 PolicyNamespaceKey(dm_protocol::kChromeUserPolicyType, std::string()),
25 store.get()),
26 profile_(profile),
27 store_(store.Pass()) {
28 UserCloudPolicyManagerFactory::GetInstance()->Register(profile_, this);
29 }
30
31 UserCloudPolicyManager::~UserCloudPolicyManager() {
32 UserCloudPolicyManagerFactory::GetInstance()->Unregister(profile_, this);
33 }
34
35 void UserCloudPolicyManager::Connect(
36 PrefService* local_state,
37 DeviceManagementService* device_management_service) {
38 core()->Connect(
39 make_scoped_ptr(new CloudPolicyClient(std::string(), std::string(),
40 USER_AFFILIATION_NONE,
41 NULL, device_management_service)));
42 core()->StartRefreshScheduler();
43 core()->TrackRefreshDelayPref(local_state, prefs::kUserPolicyRefreshRate);
44 }
45
46 void UserCloudPolicyManager::DisconnectAndRemovePolicy() {
47 core()->Disconnect();
48 store_->Clear();
49 }
50
51 bool UserCloudPolicyManager::IsClientRegistered() const {
52 return client() && client()->is_registered();
53 }
54
55 void UserCloudPolicyManager::RegisterClient(const std::string& access_token) {
56 DCHECK(client()) << "Callers must invoke Initialize() first";
57 if (!client()->is_registered()) {
58 DVLOG(1) << "Registering client with access token: " << access_token;
59 client()->Register(em::DeviceRegisterRequest::BROWSER,
60 access_token, std::string(), false);
61 }
62 }
63
64 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698