OLD | NEW |
---|---|
(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_ | |
OLD | NEW |