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

Side by Side Diff: chrome/browser/ui/ash/ash_keyboard_controller_proxy.h

Issue 1128173003: Implements onBoundsChanged event in virtualKeyboardPrivate namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 5 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/ui/ash/ash_keyboard_controller_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_
6 #define CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ 6 #define CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "content/public/browser/web_contents_observer.h" 10 #include "content/public/browser/web_contents_observer.h"
11 #include "extensions/browser/extension_function_dispatcher.h" 11 #include "extensions/browser/extension_function_dispatcher.h"
12 #include "ui/keyboard/keyboard_controller_proxy.h" 12 #include "ui/keyboard/keyboard_controller_proxy.h"
13 13
14 namespace content { 14 namespace content {
15 class BrowserContext; 15 class BrowserContext;
16 class WebContents; 16 class WebContents;
17 } 17 }
18 namespace extensions { 18 namespace extensions {
19 class ExtensionFunctionDispatcher; 19 class ExtensionFunctionDispatcher;
20 class WindowController; 20 class WindowController;
21 } 21 }
22 namespace gfx { 22 namespace gfx {
23 class Rect; 23 class Rect;
24 } 24 }
25 namespace keyboard {
26 class KeyboardController;
27 class KeyboardControllerObserver;
28 }
25 namespace ui { 29 namespace ui {
26 class InputMethod; 30 class InputMethod;
27 } 31 }
28 32
29 // Subclass of KeyboardControllerProxy. It is used by KeyboardController to get 33 // Subclass of KeyboardControllerProxy. It is used by KeyboardController to get
30 // access to the virtual keyboard window and setup Chrome extension functions. 34 // access to the virtual keyboard window and setup Chrome extension functions.
31 class AshKeyboardControllerProxy 35 class AshKeyboardControllerProxy
32 : public keyboard::KeyboardControllerProxy, 36 : public keyboard::KeyboardControllerProxy,
33 public content::WebContentsObserver, 37 public content::WebContentsObserver,
34 public extensions::ExtensionFunctionDispatcher::Delegate { 38 public extensions::ExtensionFunctionDispatcher::Delegate {
35 public: 39 public:
36 explicit AshKeyboardControllerProxy(content::BrowserContext* context); 40 explicit AshKeyboardControllerProxy(content::BrowserContext* context);
37 ~AshKeyboardControllerProxy() override; 41 ~AshKeyboardControllerProxy() override;
38 42
39 private: 43 private:
40 void OnRequest(const ExtensionHostMsg_Request_Params& params); 44 void OnRequest(const ExtensionHostMsg_Request_Params& params);
41 45
42 // keyboard::KeyboardControllerProxy overrides 46 // keyboard::KeyboardControllerProxy overrides
43 ui::InputMethod* GetInputMethod() override; 47 ui::InputMethod* GetInputMethod() override;
44 void RequestAudioInput( 48 void RequestAudioInput(
45 content::WebContents* web_contents, 49 content::WebContents* web_contents,
46 const content::MediaStreamRequest& request, 50 const content::MediaStreamRequest& request,
47 const content::MediaResponseCallback& callback) override; 51 const content::MediaResponseCallback& callback) override;
48 void SetupWebContents(content::WebContents* contents) override; 52 void SetupWebContents(content::WebContents* contents) override;
53 void SetController(keyboard::KeyboardController* controller) override;
49 void ShowKeyboardContainer(aura::Window* container) override; 54 void ShowKeyboardContainer(aura::Window* container) override;
50 55
51 // The overridden implementation dispatches 56 // The overridden implementation dispatches
52 // chrome.virtualKeyboardPrivate.onTextInputBoxFocused event to extension to 57 // chrome.virtualKeyboardPrivate.onTextInputBoxFocused event to extension to
53 // provide the input type information. Naturally, when the virtual keyboard 58 // provide the input type information. Naturally, when the virtual keyboard
54 // extension is used as an IME then chrome.input.ime.onFocus provides the 59 // extension is used as an IME then chrome.input.ime.onFocus provides the
55 // information, but not when the virtual keyboard is used in conjunction with 60 // information, but not when the virtual keyboard is used in conjunction with
56 // another IME. virtualKeyboardPrivate.onTextInputBoxFocused is the remedy in 61 // another IME. virtualKeyboardPrivate.onTextInputBoxFocused is the remedy in
57 // that case. 62 // that case.
58 void SetUpdateInputType(ui::TextInputType type) override; 63 void SetUpdateInputType(ui::TextInputType type) override;
59 64
60 // extensions::ExtensionFunctionDispatcher::Delegate overrides 65 // extensions::ExtensionFunctionDispatcher::Delegate overrides
61 extensions::WindowController* GetExtensionWindowController() const override; 66 extensions::WindowController* GetExtensionWindowController() const override;
62 content::WebContents* GetAssociatedWebContents() const override; 67 content::WebContents* GetAssociatedWebContents() const override;
63 68
64 // content::WebContentsObserver overrides 69 // content::WebContentsObserver overrides
65 bool OnMessageReceived(const IPC::Message& message) override; 70 bool OnMessageReceived(const IPC::Message& message) override;
66 void RenderViewCreated(content::RenderViewHost* render_view_host) override; 71 void RenderViewCreated(content::RenderViewHost* render_view_host) override;
67 72
73 keyboard::KeyboardController* keyboard_controller_;
74
68 scoped_ptr<extensions::ExtensionFunctionDispatcher> 75 scoped_ptr<extensions::ExtensionFunctionDispatcher>
69 extension_function_dispatcher_; 76 extension_function_dispatcher_;
77 scoped_ptr<keyboard::KeyboardControllerObserver> observer_;
70 78
71 DISALLOW_COPY_AND_ASSIGN(AshKeyboardControllerProxy); 79 DISALLOW_COPY_AND_ASSIGN(AshKeyboardControllerProxy);
72 }; 80 };
73 81
74 #endif // CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_ 82 #endif // CHROME_BROWSER_UI_ASH_ASH_KEYBOARD_CONTROLLER_PROXY_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/ash/ash_keyboard_controller_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698