| Index: chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| diff --git a/chrome/browser/chromeos/login/ui/webui_login_display.cc b/chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| index 7428df9a5b6e4f2c9d8f1f8ae6dc3ef0b66631a4..9d7c8d7685aaf4efd132afd58eec4516cb9873fc 100644
|
| --- a/chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| +++ b/chrome/browser/chromeos/login/ui/webui_login_display.cc
|
| @@ -51,7 +51,7 @@ void WebUILoginDisplay::ClearAndEnablePassword() {
|
| webui_handler_->ClearAndEnablePassword();
|
| }
|
|
|
| -void WebUILoginDisplay::Init(const UserList& users,
|
| +void WebUILoginDisplay::Init(const user_manager::UserList& users,
|
| bool show_guest,
|
| bool show_users,
|
| bool show_new_user) {
|
| @@ -81,7 +81,7 @@ void WebUILoginDisplay::OnUserRemoved(const std::string& username) {
|
| user_selection_screen_->OnUserRemoved(username);
|
| }
|
|
|
| -void WebUILoginDisplay::OnUserImageChanged(const User& user) {
|
| +void WebUILoginDisplay::OnUserImageChanged(const user_manager::User& user) {
|
| user_selection_screen_->OnUserImageChanged(user);
|
| }
|
|
|
| @@ -89,7 +89,7 @@ void WebUILoginDisplay::HandleGetUsers() {
|
| user_selection_screen_->HandleGetUsers();
|
| }
|
|
|
| -const UserList& WebUILoginDisplay::GetUsers() const {
|
| +const user_manager::UserList& WebUILoginDisplay::GetUsers() const {
|
| return user_selection_screen_->GetUsers();
|
| }
|
|
|
|
|