| Index: chrome/browser/policy/cloud_policy_controller.cc
|
| diff --git a/chrome/browser/policy/cloud_policy_controller.cc b/chrome/browser/policy/cloud_policy_controller.cc
|
| index 60171b1a1cbd9f9f81f84623e0a83a4fbaa06cb3..c03895258b16d68455b01be6ec54cc0a5efff827 100644
|
| --- a/chrome/browser/policy/cloud_policy_controller.cc
|
| +++ b/chrome/browser/policy/cloud_policy_controller.cc
|
| @@ -227,11 +227,13 @@ void CloudPolicyController::FetchToken() {
|
| std::string auth_token;
|
| std::string device_id = identity_strategy_->GetDeviceID();
|
| std::string machine_id = identity_strategy_->GetMachineID();
|
| + std::string machine_model = identity_strategy_->GetMachineModel();
|
| em::DeviceRegisterRequest_Type policy_type =
|
| identity_strategy_->GetPolicyRegisterType();
|
| if (identity_strategy_->GetCredentials(&username, &auth_token) &&
|
| CanBeInManagedDomain(username)) {
|
| - token_fetcher_->FetchToken(auth_token, device_id, policy_type, machine_id);
|
| + token_fetcher_->FetchToken(auth_token, device_id, policy_type,
|
| + machine_id, machine_model);
|
| }
|
| }
|
|
|
|
|