| 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/ui/webui/options/chromeos/accounts_options_handler.h" | 5 #include "chrome/browser/ui/webui/options/chromeos/accounts_options_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 if (gaia::ExtractDomainName(whitelisted_user) == | 161 if (gaia::ExtractDomainName(whitelisted_user) == |
| 162 user_manager::kSupervisedUserDomain) { | 162 user_manager::kSupervisedUserDomain) { |
| 163 new_list->Remove(i, NULL); | 163 new_list->Remove(i, NULL); |
| 164 --i; | 164 --i; |
| 165 } | 165 } |
| 166 } | 166 } |
| 167 | 167 |
| 168 const user_manager::UserList& users = | 168 const user_manager::UserList& users = |
| 169 user_manager::UserManager::Get()->GetUsers(); | 169 user_manager::UserManager::Get()->GetUsers(); |
| 170 for (const auto* user : users) { | 170 for (const auto* user : users) { |
| 171 new_list->AppendIfNotPresent( | 171 new_list->AppendIfNotPresent(base::MakeUnique<base::StringValue>( |
| 172 base::MakeUnique<base::StringValue>(user->email())); | 172 user->GetAccountId().GetUserEmail())); |
| 173 } | 173 } |
| 174 | 174 |
| 175 if (OwnerSettingsServiceChromeOS* service = | 175 if (OwnerSettingsServiceChromeOS* service = |
| 176 OwnerSettingsServiceChromeOS::FromWebUI(web_ui())) { | 176 OwnerSettingsServiceChromeOS::FromWebUI(web_ui())) { |
| 177 service->Set(kAccountsPrefUsers, *new_list.get()); | 177 service->Set(kAccountsPrefUsers, *new_list.get()); |
| 178 } | 178 } |
| 179 } | 179 } |
| 180 | 180 |
| 181 } // namespace options | 181 } // namespace options |
| 182 } // namespace chromeos | 182 } // namespace chromeos |
| OLD | NEW |