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.h" | |
11 | |
12 namespace content { | |
13 class WebContents; | |
14 } // namespace content | |
15 | |
16 namespace ash { | |
17 | |
18 class AshVirtualKeyboardControllerProxy | |
sadrul
2013/03/28 19:17:00
Remove this since this isn't used?
| |
19 : public virtual_keyboard::VirtualKeyboardController::Proxy { | |
20 public: | |
21 AshVirtualKeyboardControllerProxy(); | |
22 virtual ~AshVirtualKeyboardControllerProxy(); | |
23 | |
24 virtual aura::Window* GetVirtualKeyboard() OVERRIDE; | |
25 | |
26 private: | |
27 scoped_ptr<content::WebContents> keyboard_; | |
28 | |
29 DISALLOW_COPY_AND_ASSIGN(AshVirtualKeyboardControllerProxy); | |
30 }; | |
31 | |
32 } // namespace ash | |
33 | |
34 #endif // ASH_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_CONTROLLER_PROXY_H_ | |
OLD | NEW |