diff options
author | bshe@chromium.org <bshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-16 02:56:10 +0000 |
---|---|---|
committer | bshe@chromium.org <bshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-16 02:56:10 +0000 |
commit | a53dcc96cc25a896b06f535d419c02135b973adb (patch) | |
tree | 81d88f37ee71080cd57c125577531489f33018ca /ash/keyboard_controller_proxy_stub.cc | |
parent | 5e01b54602839ba80390ca54f6b037018af33509 (diff) | |
download | chromium_src-a53dcc96cc25a896b06f535d419c02135b973adb.zip chromium_src-a53dcc96cc25a896b06f535d419c02135b973adb.tar.gz chromium_src-a53dcc96cc25a896b06f535d419c02135b973adb.tar.bz2 |
Add a full screen virtual keyboard to virtual keyboard root window
BUG=310331
TEST=
1. add keyboard-usability-experiment flag
2. hook up an external screen
3. boot device
expected: a full screen keyboard on one of the screen
Review URL: https://codereview.chromium.org/47873003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235502 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/keyboard_controller_proxy_stub.cc')
-rw-r--r-- | ash/keyboard_controller_proxy_stub.cc | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/ash/keyboard_controller_proxy_stub.cc b/ash/keyboard_controller_proxy_stub.cc deleted file mode 100644 index 6db733c..0000000 --- a/ash/keyboard_controller_proxy_stub.cc +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright 2013 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "ash/keyboard_controller_proxy_stub.h" - -#include "ash/shell.h" -#include "ash/shell_delegate.h" -#include "ui/views/corewm/input_method_event_filter.h" - -using namespace content; - -namespace ash { - -KeyboardControllerProxyStub::KeyboardControllerProxyStub() { -} - -KeyboardControllerProxyStub::~KeyboardControllerProxyStub() { -} - -BrowserContext* KeyboardControllerProxyStub::GetBrowserContext() { - return Shell::GetInstance()->delegate()->GetCurrentBrowserContext(); -} - -ui::InputMethod* KeyboardControllerProxyStub::GetInputMethod() { - return Shell::GetInstance()->input_method_filter()->input_method(); -} - -void KeyboardControllerProxyStub::RequestAudioInput( - WebContents* web_contents, - const MediaStreamRequest& request, - const MediaResponseCallback& callback) { -} - -} // namespace ash |