Index: chrome/browser/ui/ash/ash_keyboard_controller_proxy.h |
diff --git a/chrome/browser/ui/ash/ash_keyboard_controller_proxy.h b/chrome/browser/ui/ash/ash_keyboard_controller_proxy.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..50f84794822fd803ccb300405e608930854947ae |
--- /dev/null |
+++ b/chrome/browser/ui/ash/ash_keyboard_controller_proxy.h |
@@ -0,0 +1,29 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ |
+#define CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ |
+ |
+#include "base/basictypes.h" |
+#include "base/memory/scoped_ptr.h" |
+#include "ui/keyboard/keyboard_controller_proxy.h" |
+ |
+namespace content { |
+class WebContents; |
+} // namespace content |
+ |
+class AshKeyboardControllerProxy : public keyboard::KeyboardControllerProxy { |
+ public: |
+ AshKeyboardControllerProxy(); |
+ virtual ~AshKeyboardControllerProxy(); |
+ |
+ virtual aura::Window* GetKeyboardWindow() OVERRIDE; |
+ |
+ private: |
+ scoped_ptr<content::WebContents> keyboard_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(AshKeyboardControllerProxy); |
+}; |
+ |
+#endif // CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ |