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

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: Add unit tests for virtual keyboard container 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
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
oshima 2013/08/08 17:19:29 nit: no new lines for overridden methods.
bshe 2013/08/08 19:37:02 Done.
23 virtual ui::InputMethod* GetInputMethod() OVERRIDE;
24
25 virtual void RequestAudioInput(content::WebContents* web_contents,
26 const content::MediaStreamRequest& request,
27 const content::MediaResponseCallback& callback) OVERRIDE;
28
29 DISALLOW_COPY_AND_ASSIGN(KeyboardControllerProxyStub);
30 };
31
32 } // namespace keyboard
oshima 2013/08/08 17:19:29 nit: namespace ash
bshe 2013/08/08 19:37:02 Done On 2013/08/08 17:19:29, oshima wrote:
33
34 #endif // ASH_SHELL_KEYBOARD_CONTROLLER_PROXY_STUB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698