Index: trunk/src/ash/shell/shell_delegate_impl.h |
=================================================================== |
--- trunk/src/ash/shell/shell_delegate_impl.h (revision 194588) |
+++ trunk/src/ash/shell/shell_delegate_impl.h (working copy) |
@@ -27,9 +27,16 @@ |
void SetWatcher(WindowWatcher* watcher); |
+ virtual bool IsUserLoggedIn() const OVERRIDE; |
+ virtual bool IsSessionStarted() const OVERRIDE; |
+ virtual bool IsGuestSession() const OVERRIDE; |
virtual bool IsFirstRunAfterBoot() const OVERRIDE; |
virtual bool IsMultiProfilesEnabled() const OVERRIDE; |
virtual bool IsRunningInForcedAppMode() const OVERRIDE; |
+ virtual bool CanLockScreen() const OVERRIDE; |
+ virtual void LockScreen() OVERRIDE; |
+ virtual void UnlockScreen() OVERRIDE; |
+ virtual bool IsScreenLocked() const OVERRIDE; |
virtual void PreInit() OVERRIDE; |
virtual void Shutdown() OVERRIDE; |
virtual void Exit() OVERRIDE; |
@@ -62,7 +69,6 @@ |
virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; |
virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; |
virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; |
- virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE; |
virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE; |
virtual void OpenFeedbackPage() OVERRIDE; |
virtual void RecordUserMetricsAction(UserMetricsAction action) OVERRIDE; |
@@ -85,6 +91,7 @@ |
LauncherDelegateImpl* launcher_delegate_; |
+ bool locked_; |
bool spoken_feedback_enabled_; |
bool high_contrast_enabled_; |
bool screen_magnifier_enabled_; |