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 #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 |
OLD | NEW |