Delay wallpaper load by 2 * average wallpaper load time.
[chromium-blink-merge.git] / ash / keyboard_controller_proxy_stub.cc
blob6db733c576012de46e3c3d71d257a290216eeada
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/keyboard_controller_proxy_stub.h"
7 #include "ash/shell.h"
8 #include "ash/shell_delegate.h"
9 #include "ui/views/corewm/input_method_event_filter.h"
11 using namespace content;
13 namespace ash {
15 KeyboardControllerProxyStub::KeyboardControllerProxyStub() {
18 KeyboardControllerProxyStub::~KeyboardControllerProxyStub() {
21 BrowserContext* KeyboardControllerProxyStub::GetBrowserContext() {
22 return Shell::GetInstance()->delegate()->GetCurrentBrowserContext();
25 ui::InputMethod* KeyboardControllerProxyStub::GetInputMethod() {
26 return Shell::GetInstance()->input_method_filter()->input_method();
29 void KeyboardControllerProxyStub::RequestAudioInput(
30 WebContents* web_contents,
31 const MediaStreamRequest& request,
32 const MediaResponseCallback& callback) {
35 } // namespace ash