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 ASH_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_CONTROLLER_PROXY_H_ |
| 6 #define ASH_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_CONTROLLER_PROXY_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "ui/virtual_keyboard/virtual_keyboard_controller_proxy.h" |
| 11 |
| 12 namespace content { |
| 13 class WebContents; |
| 14 } // namespace content |
| 15 |
| 16 class AshVirtualKeyboardControllerProxy |
| 17 : public virtual_keyboard::VirtualKeyboardControllerProxy { |
| 18 public: |
| 19 AshVirtualKeyboardControllerProxy(); |
| 20 virtual ~AshVirtualKeyboardControllerProxy(); |
| 21 |
| 22 virtual aura::Window* GetVirtualKeyboard() OVERRIDE; |
| 23 |
| 24 private: |
| 25 scoped_ptr<content::WebContents> keyboard_; |
| 26 |
| 27 DISALLOW_COPY_AND_ASSIGN(AshVirtualKeyboardControllerProxy); |
| 28 }; |
| 29 |
| 30 #endif // ASH_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_CONTROLLER_PROXY_H_ |
OLD | NEW |