diff options
author | komatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-19 11:52:08 +0000 |
---|---|---|
committer | komatsu@chromium.org <komatsu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-19 11:52:08 +0000 |
commit | 6f02e3a18b4a33ee6b859494d21e8c8af2726719 (patch) | |
tree | c4235cc30e9c74d0bc1f06e2e7a1d5817fc51914 /chrome/browser/chromeos/input_method/input_method_engine_interface.h | |
parent | c112484c4665767e8d814a37b7da04d4d86312bc (diff) | |
download | chromium_src-6f02e3a18b4a33ee6b859494d21e8c8af2726719.zip chromium_src-6f02e3a18b4a33ee6b859494d21e8c8af2726719.tar.gz chromium_src-6f02e3a18b4a33ee6b859494d21e8c8af2726719.tar.bz2 |
Make InputMethodEngine a subclass of IBusEngineHandler.
BUG=N/A
Review URL: https://codereview.chromium.org/98163002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241842 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_engine_interface.h')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_engine_interface.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_engine_interface.h b/chrome/browser/chromeos/input_method/input_method_engine_interface.h index 2dabe3d..c6b0655 100644 --- a/chrome/browser/chromeos/input_method/input_method_engine_interface.h +++ b/chrome/browser/chromeos/input_method/input_method_engine_interface.h @@ -8,6 +8,8 @@ #include <string> #include <vector> +#include "ui/base/ime/chromeos/ibus_bridge.h" + class GURL; namespace chromeos { @@ -18,7 +20,7 @@ struct KeyEventHandle; // InputMethodEngine is used to translate from the Chrome IME API to the native // API. -class InputMethodEngineInterface { +class InputMethodEngineInterface : public IBusEngineHandlerInterface { public: struct KeyboardEvent { KeyboardEvent(); |