| 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 <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 void PreShutdown() override; | 41 void PreShutdown() override; |
| 42 void Exit() override; | 42 void Exit() override; |
| 43 keyboard::KeyboardUI* CreateKeyboardUI() override; | 43 keyboard::KeyboardUI* CreateKeyboardUI() override; |
| 44 void OpenUrlFromArc(const GURL& url) override; | 44 void OpenUrlFromArc(const GURL& url) override; |
| 45 app_list::AppListPresenter* GetAppListPresenter() override; | 45 app_list::AppListPresenter* GetAppListPresenter() override; |
| 46 ash::ShelfDelegate* CreateShelfDelegate(ash::ShelfModel* model) override; | 46 ash::ShelfDelegate* CreateShelfDelegate(ash::ShelfModel* model) override; |
| 47 ash::SystemTrayDelegate* CreateSystemTrayDelegate() override; | 47 ash::SystemTrayDelegate* CreateSystemTrayDelegate() override; |
| 48 std::unique_ptr<ash::WallpaperDelegate> CreateWallpaperDelegate() override; | 48 std::unique_ptr<ash::WallpaperDelegate> CreateWallpaperDelegate() override; |
| 49 ash::SessionStateDelegate* CreateSessionStateDelegate() override; | 49 ash::SessionStateDelegate* CreateSessionStateDelegate() override; |
| 50 ash::AccessibilityDelegate* CreateAccessibilityDelegate() override; | 50 ash::AccessibilityDelegate* CreateAccessibilityDelegate() override; |
| 51 ash::NewWindowDelegate* CreateNewWindowDelegate() override; | |
| 52 ash::MediaDelegate* CreateMediaDelegate() override; | 51 ash::MediaDelegate* CreateMediaDelegate() override; |
| 53 std::unique_ptr<ash::PaletteDelegate> CreatePaletteDelegate() override; | 52 std::unique_ptr<ash::PaletteDelegate> CreatePaletteDelegate() override; |
| 54 ui::MenuModel* CreateContextMenu(ash::WmShelf* wm_shelf, | 53 ui::MenuModel* CreateContextMenu(ash::WmShelf* wm_shelf, |
| 55 const ash::ShelfItem* item) override; | 54 const ash::ShelfItem* item) override; |
| 56 ash::GPUSupport* CreateGPUSupport() override; | 55 ash::GPUSupport* CreateGPUSupport() override; |
| 57 base::string16 GetProductName() const override; | 56 base::string16 GetProductName() const override; |
| 58 void OpenKeyboardShortcutHelpPage() const override; | 57 void OpenKeyboardShortcutHelpPage() const override; |
| 59 gfx::Image GetDeprecatedAcceleratorImage() const override; | 58 gfx::Image GetDeprecatedAcceleratorImage() const override; |
| 60 void ToggleTouchpad() override; | 59 void ToggleTouchpad() override; |
| 61 void ToggleTouchscreen() override; | 60 void ToggleTouchscreen() override; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 72 | 71 |
| 73 ChromeLauncherControllerImpl* shelf_delegate_; | 72 ChromeLauncherControllerImpl* shelf_delegate_; |
| 74 | 73 |
| 75 std::unique_ptr<chromeos::DisplayConfigurationObserver> | 74 std::unique_ptr<chromeos::DisplayConfigurationObserver> |
| 76 display_configuration_observer_; | 75 display_configuration_observer_; |
| 77 | 76 |
| 78 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); | 77 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); |
| 79 }; | 78 }; |
| 80 | 79 |
| 81 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ | 80 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ |
| OLD | NEW |