Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: ash/keyboard_controller_proxy_stub.cc

Issue 62833010: Reland "Add a full screen virtual keyboard to virtual keyboard root window" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: format nit. The main change is patchset 2 Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ash/keyboard_controller_proxy_stub.h ('k') | ash/root_window_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include "ash/keyboard_controller_proxy_stub.h"
6
7 #include "ash/shell.h"
8 #include "ash/shell_delegate.h"
9 #include "ui/views/corewm/input_method_event_filter.h"
10
11 using namespace content;
12
13 namespace ash {
14
15 KeyboardControllerProxyStub::KeyboardControllerProxyStub() {
16 }
17
18 KeyboardControllerProxyStub::~KeyboardControllerProxyStub() {
19 }
20
21 BrowserContext* KeyboardControllerProxyStub::GetBrowserContext() {
22 return Shell::GetInstance()->delegate()->GetCurrentBrowserContext();
23 }
24
25 ui::InputMethod* KeyboardControllerProxyStub::GetInputMethod() {
26 return Shell::GetInstance()->input_method_filter()->input_method();
27 }
28
29 void KeyboardControllerProxyStub::RequestAudioInput(
30 WebContents* web_contents,
31 const MediaStreamRequest& request,
32 const MediaResponseCallback& callback) {
33 }
34
35 } // namespace ash
OLDNEW
« no previous file with comments | « ash/keyboard_controller_proxy_stub.h ('k') | ash/root_window_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698