Index: chrome/browser/chromeos/input_method/input_method_engine_interface.h |
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 71d4298ee97dc4a637ec0e3f6f009ad5d357ce25..4563ec58d6cecca1ae4bc140d7cd89a1b2a4152a 100644 |
--- a/chrome/browser/chromeos/input_method/input_method_engine_interface.h |
+++ b/chrome/browser/chromeos/input_method/input_method_engine_interface.h |
@@ -172,11 +172,6 @@ class InputMethodEngineInterface : public IMEEngineHandlerInterface { |
virtual ~InputMethodEngineInterface() {} |
- virtual const input_method::InputMethodDescriptor& GetDescriptor() const = 0; |
- |
- // Called when the input metho initialization is done. |
- virtual void NotifyImeReady() = 0; |
- |
// Set the current composition and associated properties. |
virtual bool SetComposition(int context_id, |
const char* text, |
@@ -231,6 +226,9 @@ class InputMethodEngineInterface : public IMEEngineHandlerInterface { |
// Returns true if this IME is active, false if not. |
virtual bool IsActive() const = 0; |
+ // Returns the current active input_component id. |
+ virtual const std::string& GetActiveComponentId() const = 0; |
+ |
// Deletes |number_of_chars| unicode characters as the basis of |offset| from |
// the surrounding text. The |offset| is relative position based on current |
// caret. |