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

Side by Side Diff: chrome/browser/ui/ash/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_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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698