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

Side by Side Diff: ash/virtual_keyboard/ash_virtual_keyboard_controller_proxy.cc

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 #include "ash/virtual_keyboard/ash_virtual_keyboard_controller_proxy.h"
6
7 #include "content/public/browser/web_contents.h"
8 #include "content/public/browser/web_contents_view.h"
9 #include "ui/virtual_keyboard/virtual_keyboard_controller.h"
10
11 namespace ash {
12
13 AshVirtualKeyboardControllerProxy::AshVirtualKeyboardControllerProxy() {}
14
15 AshVirtualKeyboardControllerProxy::~AshVirtualKeyboardControllerProxy() {}
16
17 aura::Window* AshVirtualKeyboardControllerProxy::GetVirtualKeyboard() {
18 if (!keyboard_) {
19 }
20
21 return keyboard_->GetView()->GetNativeView();
22 }
23
24 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698