| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_SHELL_SHELL_DELEGATE_IMPL_H_ | 5 #ifndef ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
| 6 #define ASH_SHELL_SHELL_DELEGATE_IMPL_H_ | 6 #define ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/shell_delegate.h" | 10 #include "ash/shell_delegate.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 virtual ~ShellDelegateImpl(); | 26 virtual ~ShellDelegateImpl(); |
| 27 | 27 |
| 28 void SetWatcher(WindowWatcher* watcher); | 28 void SetWatcher(WindowWatcher* watcher); |
| 29 | 29 |
| 30 virtual bool IsFirstRunAfterBoot() const OVERRIDE; | 30 virtual bool IsFirstRunAfterBoot() const OVERRIDE; |
| 31 virtual bool IsMultiProfilesEnabled() const OVERRIDE; | 31 virtual bool IsMultiProfilesEnabled() const OVERRIDE; |
| 32 virtual bool IsRunningInForcedAppMode() const OVERRIDE; | 32 virtual bool IsRunningInForcedAppMode() const OVERRIDE; |
| 33 virtual void PreInit() OVERRIDE; | 33 virtual void PreInit() OVERRIDE; |
| 34 virtual void Shutdown() OVERRIDE; | 34 virtual void Shutdown() OVERRIDE; |
| 35 virtual void Exit() OVERRIDE; | 35 virtual void Exit() OVERRIDE; |
| 36 virtual void ToggleFullscreen() OVERRIDE; | |
| 37 virtual keyboard::KeyboardControllerProxy* | 36 virtual keyboard::KeyboardControllerProxy* |
| 38 CreateKeyboardControllerProxy() OVERRIDE; | 37 CreateKeyboardControllerProxy() OVERRIDE; |
| 39 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; | 38 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; |
| 40 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; | 39 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; |
| 41 virtual ash::LauncherDelegate* CreateLauncherDelegate( | 40 virtual ash::LauncherDelegate* CreateLauncherDelegate( |
| 42 ash::LauncherModel* model) OVERRIDE; | 41 ash::LauncherModel* model) OVERRIDE; |
| 43 virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; | 42 virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; |
| 44 virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; | 43 virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; |
| 45 virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; | 44 virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; |
| 46 virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE; | 45 virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 62 | 61 |
| 63 LauncherDelegateImpl* launcher_delegate_; | 62 LauncherDelegateImpl* launcher_delegate_; |
| 64 | 63 |
| 65 DISALLOW_COPY_AND_ASSIGN(ShellDelegateImpl); | 64 DISALLOW_COPY_AND_ASSIGN(ShellDelegateImpl); |
| 66 }; | 65 }; |
| 67 | 66 |
| 68 } // namespace shell | 67 } // namespace shell |
| 69 } // namespace ash | 68 } // namespace ash |
| 70 | 69 |
| 71 #endif // ASH_SHELL_SHELL_DELEGATE_IMPL_H_ | 70 #endif // ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
| OLD | NEW |