1 // Copyright 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.
5 #include "ash/shell/keyboard_controller_proxy_stub.h"
8 #include "ash/shell_delegate.h"
9 #include "ui/aura/window.h"
10 #include "ui/base/ime/mock_input_method.h"
11 #include "ui/wm/core/input_method_event_filter.h"
13 using namespace content
;
17 KeyboardControllerProxyStub::KeyboardControllerProxyStub()
18 : keyboard::KeyboardControllerProxy(Shell::GetInstance()
20 ->GetActiveBrowserContext()) {
23 KeyboardControllerProxyStub::~KeyboardControllerProxyStub() {
26 bool KeyboardControllerProxyStub::HasKeyboardWindow() const {
30 aura::Window
* KeyboardControllerProxyStub::GetKeyboardWindow() {
32 keyboard_
.reset(new aura::Window(&delegate_
));
33 keyboard_
->Init(aura::WINDOW_LAYER_NOT_DRAWN
);
35 return keyboard_
.get();
38 ui::InputMethod
* KeyboardControllerProxyStub::GetInputMethod() {
39 return Shell::GetInstance()->input_method_filter()->input_method();
42 void KeyboardControllerProxyStub::RequestAudioInput(
43 WebContents
* web_contents
,
44 const MediaStreamRequest
& request
,
45 const MediaResponseCallback
& callback
) {
48 void KeyboardControllerProxyStub::LoadSystemKeyboard() {
51 void KeyboardControllerProxyStub::ReloadKeyboardIfNeeded() {