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

Unified Diff: ash/mus/bridge/wm_shell_mus.cc

Issue 2416253004: ash: Use session_manager::SessionState (Closed)
Patch Set: add comment about session state in SessionStaetDelegateChromeos Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/common/wm/maximize_mode/maximize_mode_event_handler.cc ('k') | ash/mus/shell_delegate_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/bridge/wm_shell_mus.cc
diff --git a/ash/mus/bridge/wm_shell_mus.cc b/ash/mus/bridge/wm_shell_mus.cc
index ed26084c8623ccd0ba875dd5022d1926e602d772..f2f1af0dca0c1a3274fe7482555e046b4e6c9a59 100644
--- a/ash/mus/bridge/wm_shell_mus.cc
+++ b/ash/mus/bridge/wm_shell_mus.cc
@@ -75,7 +75,9 @@ class SessionStateDelegateStub : public SessionStateDelegate {
screen_locked_ = false;
}
bool IsUserSessionBlocked() const override { return false; }
- SessionState GetSessionState() const override { return SESSION_STATE_ACTIVE; }
+ session_manager::SessionState GetSessionState() const override {
+ return session_manager::SessionState::ACTIVE;
+ }
const user_manager::UserInfo* GetUserInfo(UserIndex index) const override {
return user_info_.get();
}
« no previous file with comments | « ash/common/wm/maximize_mode/maximize_mode_event_handler.cc ('k') | ash/mus/shell_delegate_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698