Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7746)

Unified Diff: ash/shell_delegate.h

Issue 13164002: Create and show the virtual keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698