| Index: ash/session/session_state_observer.h
|
| diff --git a/ash/session/session_state_observer.h b/ash/session/session_state_observer.h
|
| index 36fad837d611f8b2040a40d13fa76caa886524c0..dcb3b37b09d3a14483f8ec39c05f0d0cdbddfeb8 100644
|
| --- a/ash/session/session_state_observer.h
|
| +++ b/ash/session/session_state_observer.h
|
| @@ -11,15 +11,17 @@
|
| #include "ash/session/session_state_delegate.h"
|
| #include "base/basictypes.h"
|
|
|
| +class AccountId;
|
| +
|
| namespace ash {
|
|
|
| class ASH_EXPORT SessionStateObserver {
|
| public:
|
| // Called when active user has changed.
|
| - virtual void ActiveUserChanged(const std::string& user_id) {}
|
| + virtual void ActiveUserChanged(const AccountId& account_id) {}
|
|
|
| // Called when another user gets added to the existing session.
|
| - virtual void UserAddedToSession(const std::string& user_id) {}
|
| + virtual void UserAddedToSession(const AccountId& account_id) {}
|
|
|
| // Called when session state is changed.
|
| virtual void SessionStateChanged(SessionStateDelegate::SessionState state) {}
|
|
|