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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: ash/shell/keyboard_controller_proxy_stub.h
diff --git a/ash/shell/keyboard_controller_proxy_stub.h b/ash/shell/keyboard_controller_proxy_stub.h
new file mode 100644
index 0000000000000000000000000000000000000000..dc490a0d6f6374df698b5e93f7bf1894fa37bf35
--- /dev/null
+++ b/ash/shell/keyboard_controller_proxy_stub.h
@@ -0,0 +1,34 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_SHELL_KEYBOARD_CONTROLLER_PROXY_STUB_H_
+#define ASH_SHELL_KEYBOARD_CONTROLLER_PROXY_STUB_H_
+
+#include "ui/keyboard/keyboard_controller_proxy.h"
+
+namespace ash {
+
+// Stub implementation of KeyboardControllerProxy
+class KEYBOARD_EXPORT KeyboardControllerProxyStub
+ : public keyboard::KeyboardControllerProxy {
+ public:
+ KeyboardControllerProxyStub();
+ virtual ~KeyboardControllerProxyStub();
+
+ private:
+ // Overridden from keyboard::KeyboardControllerProxy:
+ virtual content::BrowserContext* GetBrowserContext() OVERRIDE;
+
oshima 2013/08/08 17:19:29 nit: no new lines for overridden methods.
bshe 2013/08/08 19:37:02 Done.
+ virtual ui::InputMethod* GetInputMethod() OVERRIDE;
+
+ virtual void RequestAudioInput(content::WebContents* web_contents,
+ const content::MediaStreamRequest& request,
+ const content::MediaResponseCallback& callback) OVERRIDE;
+
+ DISALLOW_COPY_AND_ASSIGN(KeyboardControllerProxyStub);
+};
+
+} // 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:
+
+#endif // ASH_SHELL_KEYBOARD_CONTROLLER_PROXY_STUB_H_

Powered by Google App Engine
This is Rietveld 408576698