Index: chrome/browser/chromeos/profiles/profile_list_chromeos.cc |
diff --git a/chrome/browser/chromeos/profiles/profile_list_chromeos.cc b/chrome/browser/chromeos/profiles/profile_list_chromeos.cc |
index d154d4412f0bd5dc96672d5774bb893946709184..b49bcac949c5d683cc98eefc6adba7d7dbd19908 100644 |
--- a/chrome/browser/chromeos/profiles/profile_list_chromeos.cc |
+++ b/chrome/browser/chromeos/profiles/profile_list_chromeos.cc |
@@ -43,11 +43,12 @@ void ProfileListChromeOS::RebuildMenu() { |
ClearMenu(); |
// Filter for profiles associated with logged-in users. |
- UserList users = UserManager::Get()->GetLoggedInUsers(); |
+ user_manager::UserList users = UserManager::Get()->GetLoggedInUsers(); |
// Add corresponding profiles. |
- for (UserList::const_iterator it = users.begin(); |
- it != users.end(); ++it) { |
+ for (user_manager::UserList::const_iterator it = users.begin(); |
+ it != users.end(); |
+ ++it) { |
size_t i = profile_info_->GetIndexOfProfileWithPath( |
ProfileHelper::GetProfilePathByUserIdHash((*it)->username_hash())); |