Remove unused flag --enable-browser-plugin-drag-drop.
[chromium-blink-merge.git] / ash / shell / keyboard_controller_proxy_stub.cc
blobd73ebb3497d91b7df581bc35d4a6f264079cafa8
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/wm/core/input_method_event_filter.h"
12 using namespace content;
14 namespace ash {
16 KeyboardControllerProxyStub::KeyboardControllerProxyStub() {
19 KeyboardControllerProxyStub::~KeyboardControllerProxyStub() {
22 bool KeyboardControllerProxyStub::HasKeyboardWindow() const {
23 return keyboard_;
26 aura::Window* KeyboardControllerProxyStub::GetKeyboardWindow() {
27 if (!keyboard_) {
28 keyboard_.reset(new aura::Window(&delegate_));
29 keyboard_->Init(aura::WINDOW_LAYER_NOT_DRAWN);
31 return keyboard_.get();
34 BrowserContext* KeyboardControllerProxyStub::GetBrowserContext() {
35 // TODO(oshima): investigate which profile to use.
36 return Shell::GetInstance()->delegate()->GetActiveBrowserContext();
39 ui::InputMethod* KeyboardControllerProxyStub::GetInputMethod() {
40 return Shell::GetInstance()->input_method_filter()->input_method();
43 void KeyboardControllerProxyStub::RequestAudioInput(
44 WebContents* web_contents,
45 const MediaStreamRequest& request,
46 const MediaResponseCallback& callback) {
49 } // namespace ash