| 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_DELEGATE_H_ | 5 #ifndef ASH_SHELL_DELEGATE_H_ |
| 6 #define ASH_SHELL_DELEGATE_H_ | 6 #define ASH_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 "ash/shell.h" | |
| 13 #include "base/callback.h" | 12 #include "base/callback.h" |
| 14 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 15 | 14 |
| 16 class GURL; | 15 class GURL; |
| 17 | 16 |
| 18 namespace app_list { | 17 namespace app_list { |
| 19 class AppListPresenter; | 18 class AppListPresenter; |
| 20 class AppListViewDelegate; | 19 class AppListViewDelegate; |
| 21 } | 20 } |
| 22 | 21 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 37 } | 36 } |
| 38 | 37 |
| 39 namespace views { | 38 namespace views { |
| 40 class Widget; | 39 class Widget; |
| 41 } | 40 } |
| 42 | 41 |
| 43 namespace ash { | 42 namespace ash { |
| 44 | 43 |
| 45 class AccessibilityDelegate; | 44 class AccessibilityDelegate; |
| 46 class ContainerDelegate; | 45 class ContainerDelegate; |
| 46 class GPUSupport; |
| 47 class MediaDelegate; | 47 class MediaDelegate; |
| 48 class NewWindowDelegate; | 48 class NewWindowDelegate; |
| 49 class PointerWatcherDelegate; | 49 class PointerWatcherDelegate; |
| 50 class SessionStateDelegate; | 50 class SessionStateDelegate; |
| 51 class ShelfDelegate; | 51 class ShelfDelegate; |
| 52 class ShelfModel; | 52 class ShelfModel; |
| 53 class SystemTrayDelegate; | 53 class SystemTrayDelegate; |
| 54 class UserWallpaperDelegate; | 54 class UserWallpaperDelegate; |
| 55 class Shelf; | 55 class Shelf; |
| 56 struct ShelfItem; | 56 struct ShelfItem; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 virtual gfx::Image GetDeprecatedAcceleratorImage() const = 0; | 166 virtual gfx::Image GetDeprecatedAcceleratorImage() const = 0; |
| 167 | 167 |
| 168 // Toggles the status of the touchpad / touchscreen on or off. | 168 // Toggles the status of the touchpad / touchscreen on or off. |
| 169 virtual void ToggleTouchpad() {} | 169 virtual void ToggleTouchpad() {} |
| 170 virtual void ToggleTouchscreen() {} | 170 virtual void ToggleTouchscreen() {} |
| 171 }; | 171 }; |
| 172 | 172 |
| 173 } // namespace ash | 173 } // namespace ash |
| 174 | 174 |
| 175 #endif // ASH_SHELL_DELEGATE_H_ | 175 #endif // ASH_SHELL_DELEGATE_H_ |
| OLD | NEW |