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

Side by Side Diff: ui/virtual_keyboard/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, 8 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 UI_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_CONTROLLER_PROXY_H_
6 #define UI_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_CONTROLLER_PROXY_H_
7
8 #include "ui/virtual_keyboard/virtual_keyboard_export.h"
9
10 namespace aura {
11 class Window;
12 } // namespace aura
13
14 namespace virtual_keyboard {
15
16 class VIRTUAL_KEYBOARD_EXPORT VirtualKeyboardControllerProxy {
sadrul 2013/03/28 19:17:00 Doc
bryeung 2013/04/02 15:56:53 Done.
17 public:
18 virtual aura::Window* GetVirtualKeyboard() = 0;
sadrul 2013/03/28 19:17:00 Doc. Perhaps rename to GetVirtualKeyboardWindow (o
bryeung 2013/04/02 15:56:53 Done.
19 virtual ~VirtualKeyboardControllerProxy() {}
20 };
21
22 } // namespace message_center
23
24 #endif // UI_VIRTUAL_KEYBOARD_VIRTUAL_KEYBOARD_CONTROLLER_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698