diff options
Diffstat (limited to 'ash/shell_delegate.h')
-rw-r--r-- | ash/shell_delegate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h index 8e9076e..9744190 100644 --- a/ash/shell_delegate.h +++ b/ash/shell_delegate.h @@ -49,6 +49,10 @@ class ASH_EXPORT ShellDelegate { // Invoked to create a new status area. Can return NULL. virtual views::Widget* CreateStatusArea() = 0; + // Can we create the launcher yet? In some cases, we may need to defer it + // until e.g. a user has logged in and their profile has been loaded. + virtual bool CanCreateLauncher() = 0; + #if defined(OS_CHROMEOS) // Invoked when a user uses Ctrl-Shift-L to lock the screen. virtual void LockScreen() = 0; |