| Index: chrome/browser/chromeos/ownership/owner_settings_service_chromeos.cc
 | 
| diff --git a/chrome/browser/chromeos/ownership/owner_settings_service_chromeos.cc b/chrome/browser/chromeos/ownership/owner_settings_service_chromeos.cc
 | 
| index 39a9d04d4dc6fe44fae7c3621e761e514dd079cc..4259daad5692f2de697e520dee69a1f530aa8fab 100644
 | 
| --- a/chrome/browser/chromeos/ownership/owner_settings_service_chromeos.cc
 | 
| +++ b/chrome/browser/chromeos/ownership/owner_settings_service_chromeos.cc
 | 
| @@ -474,7 +474,7 @@ void OwnerSettingsServiceChromeOS::UpdateDeviceSettings(
 | 
|             entry != accounts_list->end();
 | 
|             ++entry) {
 | 
|          const base::DictionaryValue* entry_dict = NULL;
 | 
| -        if ((*entry)->GetAsDictionary(&entry_dict)) {
 | 
| +        if (entry->GetAsDictionary(&entry_dict)) {
 | 
|            em::DeviceLocalAccountInfoProto* account =
 | 
|                device_local_accounts->add_account();
 | 
|            std::string account_id;
 | 
| @@ -572,7 +572,7 @@ void OwnerSettingsServiceChromeOS::UpdateDeviceSettings(
 | 
|             i != users->end();
 | 
|             ++i) {
 | 
|          std::string email;
 | 
| -        if ((*i)->GetAsString(&email))
 | 
| +        if (i->GetAsString(&email))
 | 
|            whitelist_proto->add_user_whitelist(email);
 | 
|        }
 | 
|      }
 | 
| @@ -604,7 +604,7 @@ void OwnerSettingsServiceChromeOS::UpdateDeviceSettings(
 | 
|             i != flags->end();
 | 
|             ++i) {
 | 
|          std::string flag;
 | 
| -        if ((*i)->GetAsString(&flag))
 | 
| +        if (i->GetAsString(&flag))
 | 
|            flags_proto->add_flags(flag);
 | 
|        }
 | 
|      }
 | 
| 
 |