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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/ash/ash_keyboard_controller_proxy.h
diff --git a/chrome/browser/ui/ash/ash_keyboard_controller_proxy.h b/chrome/browser/ui/ash/ash_keyboard_controller_proxy.h
index 40b4777887c153c10fe312b992be128596b6eedf..64c042ce81ce1f2b7359c98763e4cb3cc43e83b9 100644
--- a/chrome/browser/ui/ash/ash_keyboard_controller_proxy.h
+++ b/chrome/browser/ui/ash/ash_keyboard_controller_proxy.h
@@ -22,6 +22,10 @@ class WindowController;
namespace gfx {
class Rect;
}
+namespace keyboard {
+class KeyboardController;
+class KeyboardControllerObserver;
+}
namespace ui {
class InputMethod;
}
@@ -46,6 +50,7 @@ class AshKeyboardControllerProxy
const content::MediaStreamRequest& request,
const content::MediaResponseCallback& callback) override;
void SetupWebContents(content::WebContents* contents) override;
+ void SetController(keyboard::KeyboardController* controller) override;
void ShowKeyboardContainer(aura::Window* container) override;
// The overridden implementation dispatches
@@ -65,8 +70,11 @@ class AshKeyboardControllerProxy
bool OnMessageReceived(const IPC::Message& message) override;
void RenderViewCreated(content::RenderViewHost* render_view_host) override;
+ keyboard::KeyboardController* keyboard_controller_;
+
scoped_ptr<extensions::ExtensionFunctionDispatcher>
extension_function_dispatcher_;
+ scoped_ptr<keyboard::KeyboardControllerObserver> observer_;
DISALLOW_COPY_AND_ASSIGN(AshKeyboardControllerProxy);
};
« 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