Added documentation to web_view.js/web_view_experimental.js regarding the webview...
[chromium-blink-merge.git] / ash / shell / keyboard_controller_proxy_stub.cc
blob1e50ca6c92259727e4e5dc322e1c663370ba3a54
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"
7 #include "ash/shell.h"
8 #include "ash/shell_delegate.h"
9 #include "ui/aura/window.h"
10 #include "ui/views/corewm/input_method_event_filter.h"
12 using namespace content;
14 namespace ash {
16 KeyboardControllerProxyStub::KeyboardControllerProxyStub() {
19 KeyboardControllerProxyStub::~KeyboardControllerProxyStub() {
22 aura::Window* KeyboardControllerProxyStub::GetKeyboardWindow() {
23 if (!keyboard_) {
24 keyboard_.reset(new aura::Window(&delegate_));
25 keyboard_->Init(aura::WINDOW_LAYER_NOT_DRAWN);
27 return keyboard_.get();
30 BrowserContext* KeyboardControllerProxyStub::GetBrowserContext() {
31 // TODO(oshima): investigate which profile to use.
32 return Shell::GetInstance()->delegate()->GetActiveBrowserContext();
35 ui::InputMethod* KeyboardControllerProxyStub::GetInputMethod() {
36 return Shell::GetInstance()->input_method_filter()->input_method();
39 void KeyboardControllerProxyStub::RequestAudioInput(
40 WebContents* web_contents,
41 const MediaStreamRequest& request,
42 const MediaResponseCallback& callback) {
45 } // namespace ash