summaryrefslogtreecommitdiffstats
path: root/ui/keyboard/keyboard_controller_proxy.h
diff options
context:
space:
mode:
authordmazzoni@google.com <dmazzoni@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-11 16:44:31 +0000
committerdmazzoni@google.com <dmazzoni@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-11 16:44:31 +0000
commit681c568bdde24a8d438b6bb8b1cca07fba87ed6f (patch)
treea71f0e0fb9b660d5f752d395f0aefdc103b8b924 /ui/keyboard/keyboard_controller_proxy.h
parentb699f733749d7db6dfc3225776806733f2c2c9b5 (diff)
downloadchromium_src-681c568bdde24a8d438b6bb8b1cca07fba87ed6f.zip
chromium_src-681c568bdde24a8d438b6bb8b1cca07fba87ed6f.tar.gz
chromium_src-681c568bdde24a8d438b6bb8b1cca07fba87ed6f.tar.bz2
Revert 193662 "Control visibility of the virtual keyboard."
> Control visibility of the virtual keyboard. > > Add an observer to InputMethod. This makes the InputMethod the gatherer of text input state changes, which are then distributed to interested parties. > > The KeyboardController becomes an InputMethod::Observer, and shows/hides the keyboard as appropriate. > > BUG=227128 > > Review URL: https://chromiumcodereview.appspot.com/13207003 TBR=bryeung@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193666 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/keyboard/keyboard_controller_proxy.h')
-rw-r--r--ui/keyboard/keyboard_controller_proxy.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/ui/keyboard/keyboard_controller_proxy.h b/ui/keyboard/keyboard_controller_proxy.h
index a656e06..e1783a4d 100644
--- a/ui/keyboard/keyboard_controller_proxy.h
+++ b/ui/keyboard/keyboard_controller_proxy.h
@@ -11,10 +11,6 @@ namespace aura {
class Window;
}
-namespace ui {
-class InputMethod;
-}
-
namespace keyboard {
// A proxy used by the KeyboardController to get access to the virtual
@@ -26,10 +22,6 @@ class KEYBOARD_EXPORT KeyboardControllerProxy {
// Get the virtual keyboard window. Ownership of the returned Window remains
// with the proxy.
virtual aura::Window* GetKeyboardWindow() = 0;
-
- // Get the InputMethod that will provide notifications about changes in the
- // text input context.
- virtual ui::InputMethod* GetInputMethod() = 0;
};
} // namespace keyboard