| 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_COMMON_SHELL_DELEGATE_H_ | 5 #ifndef ASH_COMMON_SHELL_DELEGATE_H_ |
| 6 #define ASH_COMMON_SHELL_DELEGATE_H_ | 6 #define ASH_COMMON_SHELL_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 | 14 |
| 15 class GURL; | 15 class GURL; |
| 16 | 16 |
| 17 namespace app_list { | 17 namespace app_list { |
| 18 class AppListPresenter; | 18 class AppListPresenter; |
| 19 class AppListViewDelegate; | |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace gfx { | 21 namespace gfx { |
| 23 class Image; | 22 class Image; |
| 24 } | 23 } |
| 25 | 24 |
| 26 namespace keyboard { | 25 namespace keyboard { |
| 27 class KeyboardUI; | 26 class KeyboardUI; |
| 28 } | 27 } |
| 29 | 28 |
| 30 namespace service_manager { | 29 namespace service_manager { |
| 31 class Connector; | 30 class Connector; |
| 32 } | 31 } |
| 33 | 32 |
| 34 namespace ui { | 33 namespace ui { |
| 35 class MenuModel; | 34 class MenuModel; |
| 36 } | 35 } |
| 37 | 36 |
| 38 namespace views { | |
| 39 class Widget; | |
| 40 } | |
| 41 | |
| 42 namespace ash { | 37 namespace ash { |
| 43 | 38 |
| 44 class AccessibilityDelegate; | 39 class AccessibilityDelegate; |
| 45 class GPUSupport; | 40 class GPUSupport; |
| 46 class MediaDelegate; | 41 class MediaDelegate; |
| 47 class PaletteDelegate; | 42 class PaletteDelegate; |
| 48 class SessionStateDelegate; | 43 class SessionStateDelegate; |
| 49 class ShelfDelegate; | 44 class ShelfDelegate; |
| 50 class ShelfModel; | 45 class ShelfModel; |
| 51 class SystemTrayDelegate; | 46 class SystemTrayDelegate; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 virtual gfx::Image GetDeprecatedAcceleratorImage() const = 0; | 134 virtual gfx::Image GetDeprecatedAcceleratorImage() const = 0; |
| 140 | 135 |
| 141 // Toggles the status of the touchpad / touchscreen on or off. | 136 // Toggles the status of the touchpad / touchscreen on or off. |
| 142 virtual void ToggleTouchpad() {} | 137 virtual void ToggleTouchpad() {} |
| 143 virtual void ToggleTouchscreen() {} | 138 virtual void ToggleTouchscreen() {} |
| 144 }; | 139 }; |
| 145 | 140 |
| 146 } // namespace ash | 141 } // namespace ash |
| 147 | 142 |
| 148 #endif // ASH_COMMON_SHELL_DELEGATE_H_ | 143 #endif // ASH_COMMON_SHELL_DELEGATE_H_ |
| OLD | NEW |