Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #ifndef ASH_SESSION_SESSION_STATE_DELEGATE_H_ | 5 #ifndef ASH_SESSION_SESSION_STATE_DELEGATE_H_ |
| 6 #define ASH_SESSION_SESSION_STATE_DELEGATE_H_ | 6 #define ASH_SESSION_SESSION_STATE_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 126 // (if that user has already signed in). | 126 // (if that user has already signed in). |
| 127 virtual void SwitchActiveUser(const std::string& user_id) = 0; | 127 virtual void SwitchActiveUser(const std::string& user_id) = 0; |
| 128 | 128 |
| 129 // Switches the active user to the next or previous user, with the same | 129 // Switches the active user to the next or previous user, with the same |
| 130 // ordering as GetLoggedInUsers. | 130 // ordering as GetLoggedInUsers. |
| 131 virtual void CycleActiveUser(CycleUser cycle_user) = 0; | 131 virtual void CycleActiveUser(CycleUser cycle_user) = 0; |
| 132 | 132 |
| 133 // Adds or removes sessions state observer. | 133 // Adds or removes sessions state observer. |
| 134 virtual void AddSessionStateObserver(SessionStateObserver* observer) = 0; | 134 virtual void AddSessionStateObserver(SessionStateObserver* observer) = 0; |
| 135 virtual void RemoveSessionStateObserver(SessionStateObserver* observer) = 0; | 135 virtual void RemoveSessionStateObserver(SessionStateObserver* observer) = 0; |
| 136 | |
| 137 // Hides multiple sign-in screen in case it is opened. | |
|
Mr4D (OOO till 08-26)
2014/07/08 15:32:07
What about "Hides multi user sign-in screen .. "?
Roman Sorokin (ftl)
2014/07/09 13:04:15
Done.
| |
| 138 virtual void HideMultipleSigninScreen() = 0; | |
|
Mr4D (OOO till 08-26)
2014/07/08 15:32:07
Can you name this HideMultiUserSigninScreen()?
Roman Sorokin (ftl)
2014/07/09 13:04:15
Done.
| |
| 136 }; | 139 }; |
| 137 | 140 |
| 138 } // namespace ash | 141 } // namespace ash |
| 139 | 142 |
| 140 #endif // ASH_SESSION_SESSION_STATE_DELEGATE_H_ | 143 #endif // ASH_SESSION_SESSION_STATE_DELEGATE_H_ |
| OLD | NEW |