Chromium Code Reviews| Index: ash/shell_delegate.h |
| diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h |
| index bb3c6dd944d596e8d23be0e032612246520a5772..b8e5e49475bf0adbcbbc95cd7debf0fd05727178 100644 |
| --- a/ash/shell_delegate.h |
| +++ b/ash/shell_delegate.h |
| @@ -26,6 +26,10 @@ class UserActionClient; |
| } |
| } |
| +namespace content { |
| +class WebContents; |
|
sadrul
2013/03/28 19:17:00
This doesn't seem necessary.
bryeung
2013/04/02 15:56:53
Leftovers. Good catch.
|
| +} |
| + |
| namespace ui { |
| class MenuModel; |
| } |
| @@ -34,6 +38,10 @@ namespace views { |
| class Widget; |
| } |
| +namespace virtual_keyboard { |
| +class VirtualKeyboardControllerProxy; |
| +} |
| + |
| namespace ash { |
| class CapsLockDelegate; |
| @@ -150,6 +158,10 @@ class ASH_EXPORT ShellDelegate { |
| // Shows the keyboard shortcut overlay. |
| virtual void ShowKeyboardOverlay() = 0; |
| + // Create a shell-specific virtual_keyboard::VirtualKeyboardControllerProxy |
| + virtual virtual_keyboard::VirtualKeyboardControllerProxy* |
| + CreateVirtualKeyboardControllerProxy() = 0; |
|
sadrul
2013/03/28 19:17:00
You will likely need another dummy implementation
bryeung
2013/04/02 15:56:53
Done.
|
| + |
| // Shows the task manager window. |
| virtual void ShowTaskManager() = 0; |