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