| OLD | NEW |
| 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/policy/user_cloud_policy_manager.h" | 5 #include "chrome/browser/policy/user_cloud_policy_manager.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "chrome/browser/policy/cloud_policy_constants.h" | 9 #include "chrome/browser/policy/cloud_policy_constants.h" |
| 10 #include "chrome/browser/policy/cloud_policy_service.h" | 10 #include "chrome/browser/policy/cloud_policy_service.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 } | 49 } |
| 50 | 50 |
| 51 bool UserCloudPolicyManager::IsClientRegistered() const { | 51 bool UserCloudPolicyManager::IsClientRegistered() const { |
| 52 return client() && client()->is_registered(); | 52 return client() && client()->is_registered(); |
| 53 } | 53 } |
| 54 | 54 |
| 55 void UserCloudPolicyManager::RegisterClient(const std::string& access_token) { | 55 void UserCloudPolicyManager::RegisterClient(const std::string& access_token) { |
| 56 DCHECK(client()) << "Callers must invoke Initialize() first"; | 56 DCHECK(client()) << "Callers must invoke Initialize() first"; |
| 57 if (!client()->is_registered()) { | 57 if (!client()->is_registered()) { |
| 58 DVLOG(1) << "Registering client with access token: " << access_token; | 58 DVLOG(1) << "Registering client with access token: " << access_token; |
| 59 client()->Register(em::DeviceRegisterRequest::USER, | 59 client()->Register(em::DeviceRegisterRequest::BROWSER, |
| 60 access_token, std::string(), false); | 60 access_token, std::string(), false); |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 | 63 |
| 64 } // namespace policy | 64 } // namespace policy |
| OLD | NEW |