diff options
Diffstat (limited to 'ash/shell/shell_delegate_impl.cc')
-rw-r--r-- | ash/shell/shell_delegate_impl.cc | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ash/shell/shell_delegate_impl.cc b/ash/shell/shell_delegate_impl.cc index 334e597..c2bfdc0 100644 --- a/ash/shell/shell_delegate_impl.cc +++ b/ash/shell/shell_delegate_impl.cc @@ -49,7 +49,7 @@ bool ShellDelegateImpl::IsScreenLocked() const { return locked_; } -void ShellDelegateImpl::OpenFileManager() { +void ShellDelegateImpl::Shutdown() { } void ShellDelegateImpl::Exit() { @@ -63,6 +63,18 @@ void ShellDelegateImpl::NewWindow(bool incognito) { ash::shell::ToplevelWindow::CreateToplevelWindow(create_params); } +void ShellDelegateImpl::Search() { +} + +void ShellDelegateImpl::OpenFileManager() { +} + +void ShellDelegateImpl::OpenCrosh() { +} + +void ShellDelegateImpl::OpenMobileSetup() { +} + ash::AppListViewDelegate* ShellDelegateImpl::CreateAppListViewDelegate() { return ash::shell::CreateAppListViewDelegate(); } |