| 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 CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/launcher/launcher_types.h" | 10 #include "ash/launcher/launcher_types.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 // ash::ShellDelegate overrides; | 38 // ash::ShellDelegate overrides; |
| 39 virtual bool IsFirstRunAfterBoot() const OVERRIDE; | 39 virtual bool IsFirstRunAfterBoot() const OVERRIDE; |
| 40 virtual bool IsMultiProfilesEnabled() const OVERRIDE; | 40 virtual bool IsMultiProfilesEnabled() const OVERRIDE; |
| 41 virtual bool IsRunningInForcedAppMode() const OVERRIDE; | 41 virtual bool IsRunningInForcedAppMode() const OVERRIDE; |
| 42 virtual void PreInit() OVERRIDE; | 42 virtual void PreInit() OVERRIDE; |
| 43 virtual void Shutdown() OVERRIDE; | 43 virtual void Shutdown() OVERRIDE; |
| 44 virtual void Exit() OVERRIDE; | 44 virtual void Exit() OVERRIDE; |
| 45 virtual void NewTab() OVERRIDE; | 45 virtual void NewTab() OVERRIDE; |
| 46 virtual void NewWindow(bool is_incognito) OVERRIDE; | 46 virtual void NewWindow(bool is_incognito) OVERRIDE; |
| 47 virtual void ToggleFullscreen() OVERRIDE; | |
| 48 virtual void OpenFileManager() OVERRIDE; | 47 virtual void OpenFileManager() OVERRIDE; |
| 49 virtual void OpenCrosh() OVERRIDE; | 48 virtual void OpenCrosh() OVERRIDE; |
| 50 virtual void RestoreTab() OVERRIDE; | 49 virtual void RestoreTab() OVERRIDE; |
| 51 virtual void ShowKeyboardOverlay() OVERRIDE; | 50 virtual void ShowKeyboardOverlay() OVERRIDE; |
| 52 virtual keyboard::KeyboardControllerProxy* | 51 virtual keyboard::KeyboardControllerProxy* |
| 53 CreateKeyboardControllerProxy() OVERRIDE; | 52 CreateKeyboardControllerProxy() OVERRIDE; |
| 54 virtual void ShowTaskManager() OVERRIDE; | 53 virtual void ShowTaskManager() OVERRIDE; |
| 55 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; | 54 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; |
| 56 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; | 55 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; |
| 57 virtual ash::LauncherDelegate* CreateLauncherDelegate( | 56 virtual ash::LauncherDelegate* CreateLauncherDelegate( |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 content::NotificationRegistrar registrar_; | 94 content::NotificationRegistrar registrar_; |
| 96 | 95 |
| 97 ChromeLauncherController* launcher_delegate_; | 96 ChromeLauncherController* launcher_delegate_; |
| 98 | 97 |
| 99 scoped_ptr<TabRestoreHelper> tab_restore_helper_; | 98 scoped_ptr<TabRestoreHelper> tab_restore_helper_; |
| 100 | 99 |
| 101 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); | 100 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); |
| 102 }; | 101 }; |
| 103 | 102 |
| 104 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ | 103 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ |
| OLD | NEW |