| Index: ash/shell_delegate.h
|
| ===================================================================
|
| --- ash/shell_delegate.h (revision 127786)
|
| +++ ash/shell_delegate.h (working copy)
|
| @@ -49,11 +49,14 @@
|
| // Invoked to create a new status area. Can return NULL.
|
| virtual views::Widget* CreateStatusArea() = 0;
|
|
|
| -#if defined(OS_CHROMEOS)
|
| - // Invoked when a user uses Ctrl-Shift-L to lock the screen.
|
| + // Invoked when a user locks the screen.
|
| virtual void LockScreen() = 0;
|
| -#endif
|
|
|
| + virtual void UnlockScreen() = 0;
|
| +
|
| + // Returns true if the screen is currently locked.
|
| + virtual bool IsScreenLocked() const = 0;
|
| +
|
| // Invoked when a user uses Ctrl-Shift-Q to close chrome.
|
| virtual void Exit() = 0;
|
|
|
|
|