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

Side by Side Diff: chrome/browser/chromeos/login/policy_oauth_fetcher.cc

Issue 11415094: Split UserCloudPolicyManager implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix DeviceCloudPolicyManagerChromeOSTest.EnrolledDevice failure. Created 8 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 #include "chrome/browser/chromeos/login/policy_oauth_fetcher.h" 5 #include "chrome/browser/chromeos/login/policy_oauth_fetcher.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/browser_process.h" 8 #include "chrome/browser/browser_process.h"
9 #include "chrome/browser/policy/browser_policy_connector.h" 9 #include "chrome/browser/policy/browser_policy_connector.h"
10 #include "chrome/browser/policy/user_cloud_policy_manager.h" 10 #include "chrome/browser/policy/user_cloud_policy_manager_chromeos.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/profiles/profile_manager.h" 12 #include "chrome/browser/profiles/profile_manager.h"
13 #include "google_apis/gaia/gaia_constants.h" 13 #include "google_apis/gaia/gaia_constants.h"
14 #include "google_apis/gaia/google_service_auth_error.h" 14 #include "google_apis/gaia/google_service_auth_error.h"
15 15
16 namespace chromeos { 16 namespace chromeos {
17 17
18 namespace { 18 namespace {
19 const char kServiceScopeChromeOSDeviceManagement[] = 19 const char kServiceScopeChromeOSDeviceManagement[] =
20 "https://www.googleapis.com/auth/chromeosdevicemanagement"; 20 "https://www.googleapis.com/auth/chromeosdevicemanagement";
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 void PolicyOAuthFetcher::OnOAuthWrapBridgeFailure( 88 void PolicyOAuthFetcher::OnOAuthWrapBridgeFailure(
89 const std::string& service_name, 89 const std::string& service_name,
90 const GoogleServiceAuthError& error) { 90 const GoogleServiceAuthError& error) {
91 LOG(WARNING) << "Failed to get OAuth access token for " << service_name 91 LOG(WARNING) << "Failed to get OAuth access token for " << service_name
92 << ", error: " << error.state(); 92 << ", error: " << error.state();
93 SetPolicyToken(""); 93 SetPolicyToken("");
94 } 94 }
95 95
96 void PolicyOAuthFetcher::SetPolicyToken(const std::string& token) { 96 void PolicyOAuthFetcher::SetPolicyToken(const std::string& token) {
97 policy_token_ = token; 97 policy_token_ = token;
98 g_browser_process->browser_policy_connector()->RegisterForUserPolicy(token);
99 98
100 // The Profile object passed in to the constructor is destroyed after the 99 policy::BrowserPolicyConnector* browser_policy_connector =
101 // login process is complete. Get the UserCloudPolicyManager from the user's 100 g_browser_process->browser_policy_connector();
102 // default profile instead. 101 browser_policy_connector->RegisterForUserPolicy(token);
103 policy::UserCloudPolicyManager* cloud_policy_manager = 102
104 ProfileManager::GetDefaultProfile()->GetUserCloudPolicyManager(); 103 policy::UserCloudPolicyManagerChromeOS* cloud_policy_manager =
104 browser_policy_connector->GetUserCloudPolicyManager();
105 if (cloud_policy_manager) { 105 if (cloud_policy_manager) {
106 if (token.empty()) 106 if (token.empty())
107 cloud_policy_manager->CancelWaitForPolicyFetch(); 107 cloud_policy_manager->CancelWaitForPolicyFetch();
108 else 108 else
109 cloud_policy_manager->RegisterClient(token); 109 cloud_policy_manager->RegisterClient(token);
110 } 110 }
111 } 111 }
112 112
113 } // namespace chromeos 113 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/login_utils.cc ('k') | chrome/browser/policy/browser_policy_connector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698