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

Side by Side Diff: ash/virtual_keyboard/ash_virtual_keyboard_controller_proxy.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698