summaryrefslogtreecommitdiffstats
path: root/views/ime/input_method_ibus.h
diff options
context:
space:
mode:
authorpenghuang@chromium.org <penghuang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-18 02:53:19 +0000
committerpenghuang@chromium.org <penghuang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-18 02:53:19 +0000
commit34c2cebd14a476d76e91b92724ce4455095bb990 (patch)
treeef2db9a2e6f4724de52f870e03c1583cddbb0fda /views/ime/input_method_ibus.h
parentf0d7241e01c9b8aa8328c2358c6239534832dadb (diff)
downloadchromium_src-34c2cebd14a476d76e91b92724ce4455095bb990.zip
chromium_src-34c2cebd14a476d76e91b92724ce4455095bb990.tar.gz
chromium_src-34c2cebd14a476d76e91b92724ce4455095bb990.tar.bz2
Do not handle Enable and Disable signals of IBusInputContext.
Becasue Enable and Disable are for indicating if an IBusInputContext is associated with an input method engine and the engine is active. So InputMethodIBus should not use them to decide if the input method system is enabled or not. BUG=None TEST=Manually Review URL: http://codereview.chromium.org/6975013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85718 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/ime/input_method_ibus.h')
-rw-r--r--views/ime/input_method_ibus.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/views/ime/input_method_ibus.h b/views/ime/input_method_ibus.h
index ac1dcbb..1e1a2034 100644
--- a/views/ime/input_method_ibus.h
+++ b/views/ime/input_method_ibus.h
@@ -128,8 +128,6 @@ class InputMethodIBus : public InputMethodBase {
IBusInputContext*, IBusText*, guint, gboolean);
CHROMEG_CALLBACK_0(InputMethodIBus, void, OnHidePreeditText,
IBusInputContext*);
- CHROMEG_CALLBACK_0(InputMethodIBus, void, OnEnable, IBusInputContext*);
- CHROMEG_CALLBACK_0(InputMethodIBus, void, OnDisable, IBusInputContext*);
CHROMEG_CALLBACK_0(InputMethodIBus, void, OnDestroy, IBusInputContext*);
CHROMEG_CALLBACK_0(InputMethodIBus, void, OnFakeDestroy, IBusInputContext*);
@@ -193,9 +191,6 @@ class InputMethodIBus : public InputMethodBase {
// event will be discarded.
bool suppress_next_result_;
- // Indicates if |context_| is enabled.
- bool enabled_;
-
DISALLOW_COPY_AND_ASSIGN(InputMethodIBus);
};