Chromium Code Reviews| Index: chrome/browser/chromeos/login/signin_screen_controller.h |
| diff --git a/chrome/browser/chromeos/login/signin_screen_controller.h b/chrome/browser/chromeos/login/signin_screen_controller.h |
| index e341062248af8dc113ffc9e088f586f94bc4befb..bce43a096d3dc5a3dc339cd12e8cfc1b9247e7ee 100644 |
| --- a/chrome/browser/chromeos/login/signin_screen_controller.h |
| +++ b/chrome/browser/chromeos/login/signin_screen_controller.h |
| @@ -14,6 +14,8 @@ |
| #include "content/public/browser/notification_observer.h" |
| #include "content/public/browser/notification_registrar.h" |
| +class AccountId; |
| + |
| namespace chromeos { |
| class LoginDisplayWebUIHandler; |
| @@ -47,11 +49,11 @@ class SignInScreenController : public user_manager::RemoveUserDelegate, |
| // Query to remove user with specified id. |
| // TODO(antrim): move to user selection screen handler. |
| - void RemoveUser(const std::string& user_id); |
| + void RemoveUser(const AccountId& account_id); |
| // user_manager::RemoveUserDelegate implementation: |
|
achuithb
2015/11/23 21:17:39
could you make everything below here private while
Alexander Alekseev
2015/11/24 06:04:11
Hm. Do you think we should make overridden public
Alexander Alekseev
2015/11/24 06:58:00
Done.
|
| - void OnBeforeUserRemoved(const std::string& username) override; |
| - void OnUserRemoved(const std::string& username) override; |
| + void OnBeforeUserRemoved(const AccountId& account_id) override; |
| + void OnUserRemoved(const AccountId& account_id) override; |
| // content::NotificationObserver implementation. |
| void Observe(int type, |