OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "ui/keyboard/keyboard_controller_proxy.h" |
| 11 |
| 12 namespace content { |
| 13 class WebContents; |
| 14 } // namespace content |
| 15 |
| 16 class AshKeyboardControllerProxy : public keyboard::KeyboardControllerProxy { |
| 17 public: |
| 18 AshKeyboardControllerProxy(); |
| 19 virtual ~AshKeyboardControllerProxy(); |
| 20 |
| 21 virtual aura::Window* GetKeyboardWindow() OVERRIDE; |
| 22 |
| 23 private: |
| 24 scoped_ptr<content::WebContents> keyboard_; |
| 25 |
| 26 DISALLOW_COPY_AND_ASSIGN(AshKeyboardControllerProxy); |
| 27 }; |
| 28 |
| 29 #endif // CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ |
OLD | NEW |