| 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..2b9b9180964ded8843f82f80a301c34eebe7a087 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 engine id.
|
| + virtual const std::string& GetActiveEngineId() 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.
|
|
|