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

Side by Side Diff: ash/shell/keyboard_controller_proxy_stub.h

Issue 22465007: Whitelist virtual keyboard container to process events at login screen (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reviews Created 7 years, 4 months 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/root_window_controller_unittest.cc ('k') | ash/shell/keyboard_controller_proxy_stub.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 #ifndef ASH_SHELL_KEYBOARD_CONTROLLER_PROXY_STUB_H_
6 #define ASH_SHELL_KEYBOARD_CONTROLLER_PROXY_STUB_H_
7
8 #include "ui/keyboard/keyboard_controller_proxy.h"
9
10 namespace ash {
11
12 // Stub implementation of KeyboardControllerProxy
13 class KEYBOARD_EXPORT KeyboardControllerProxyStub
14 : public keyboard::KeyboardControllerProxy {
15 public:
16 KeyboardControllerProxyStub();
17 virtual ~KeyboardControllerProxyStub();
18
19 private:
20 // Overridden from keyboard::KeyboardControllerProxy:
21 virtual content::BrowserContext* GetBrowserContext() OVERRIDE;
22 virtual ui::InputMethod* GetInputMethod() OVERRIDE;
23
oshima 2013/08/08 20:03:07 nuke new line
bshe 2013/08/12 18:31:31 Done.
24 virtual void RequestAudioInput(content::WebContents* web_contents,
25 const content::MediaStreamRequest& request,
26 const content::MediaResponseCallback& callback) OVERRIDE;
27
28 DISALLOW_COPY_AND_ASSIGN(KeyboardControllerProxyStub);
29 };
30
31 } // namespace ash
32
33 #endif // ASH_SHELL_KEYBOARD_CONTROLLER_PROXY_STUB_H_
OLDNEW
« no previous file with comments | « ash/root_window_controller_unittest.cc ('k') | ash/shell/keyboard_controller_proxy_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698