Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: ash/session/session_state_delegate.h

Issue 357323002: Tray elements behave appropriately on the multiple signin screen (more like lock screen) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nits Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 multi user sign-in screen in case it is opened.
138 virtual void HideMultiUserSigninScreen() = 0;
oshima 2014/07/16 20:43:30 This should be either "CloseMultiUser..." or "Canc
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_
OLDNEW
« no previous file with comments | « no previous file | ash/shell/shell_delegate_impl.cc » ('j') | chrome/browser/ui/ash/session_state_delegate_chromeos.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698