OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 module ash.mojom; | 5 module ash.mojom; |
6 | 6 |
7 import "components/signin/public/interfaces/account_id.mojom"; | 7 import "components/signin/public/interfaces/account_id.mojom"; |
8 import "ui/gfx/image/mojo/image.mojom"; | 8 import "ui/gfx/image/mojo/image.mojom"; |
9 | 9 |
10 // Matches session_manager::SessionState. | 10 // Matches session_manager::SessionState. |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
137 // a user session because ash/chrome does not support that. All users are | 137 // a user session because ash/chrome does not support that. All users are |
138 // logged out at the same time. | 138 // logged out at the same time. |
139 UpdateUserSession(UserSession user_session); | 139 UpdateUserSession(UserSession user_session); |
140 | 140 |
141 // Sets the order of user sessions. The order is keyed by the session id. | 141 // Sets the order of user sessions. The order is keyed by the session id. |
142 // Currently, session manager set a LRU order with the first one being the | 142 // Currently, session manager set a LRU order with the first one being the |
143 // active user session. | 143 // active user session. |
144 SetUserSessionOrder(array<uint32> user_session_ids); | 144 SetUserSessionOrder(array<uint32> user_session_ids); |
145 | 145 |
146 // Runs the pre-lock animation to start locking ash. When the call returns, | 146 // Runs the pre-lock animation to start locking ash. When the call returns, |
147 // |locked| == true means that the post-lock animation is finished and ash is | 147 // |locked| == true means that the post-lock animation is finished and ash is |
Tom Sepez
2017/04/24 20:54:03
Is this comment still true in light of the new met
xiyuan
2017/04/24 21:08:22
Added "ash" before "post-lock" animation to clarif
| |
148 // fully locked. Otherwise |locked| is false, which means something is wrong | 148 // fully locked. Otherwise |locked| is false, which means something is wrong |
149 // for the lock and ash is not locked. When the call returns with a true | 149 // for the lock and ash is not locked. When the call returns with a true |
150 // |locked|, screen locker runs the post lock jobs such as a11y announcement | 150 // |locked|, screen locker runs the post lock jobs such as a11y announcement |
151 // etc. Invoked by the screen locker during initialization. | 151 // etc. Invoked by the screen locker during initialization. |
152 StartLock() => (bool locked); | 152 StartLock() => (bool locked); |
153 | 153 |
154 // Notifies ash that chrome lock animations are finished. This is the last | |
155 // event for locking. SessionController forwards it to PowerEventObserver. | |
156 NotifyChromeLockAnimationsComplete(); | |
157 | |
154 // Runs the pre-unlock animation. Invoked by the screen locker before | 158 // Runs the pre-unlock animation. Invoked by the screen locker before |
155 // dismissing. When the mojo call returns, screen locker takes that as a | 159 // dismissing. When the mojo call returns, screen locker takes that as a |
156 // signal of finished unlock animation and dismisses itself. | 160 // signal of finished unlock animation and dismisses itself. |
157 RunUnlockAnimation() => (); | 161 RunUnlockAnimation() => (); |
158 | 162 |
159 // Notifies that chrome is terminating. | 163 // Notifies that chrome is terminating. |
160 NotifyChromeTerminating(); | 164 NotifyChromeTerminating(); |
161 }; | 165 }; |
162 | 166 |
163 // Interface for ash to request session service from its client (e.g. Chrome). | 167 // Interface for ash to request session service from its client (e.g. Chrome). |
164 interface SessionControllerClient { | 168 interface SessionControllerClient { |
165 // Requests to lock screen. | 169 // Requests to lock screen. |
166 RequestLockScreen(); | 170 RequestLockScreen(); |
167 | 171 |
168 // Switch to the active user with |account_id| (if the user has already signed | 172 // Switch to the active user with |account_id| (if the user has already signed |
169 // in). | 173 // in). |
170 SwitchActiveUser(signin.mojom.AccountId account_id); | 174 SwitchActiveUser(signin.mojom.AccountId account_id); |
171 | 175 |
172 // Switch the active user to the next or previous user. | 176 // Switch the active user to the next or previous user. |
173 CycleActiveUser(CycleUserDirection direction); | 177 CycleActiveUser(CycleUserDirection direction); |
174 }; | 178 }; |
OLD | NEW |