| Index: chromeos/ime/input_method_manager.h
|
| diff --git a/chromeos/ime/input_method_manager.h b/chromeos/ime/input_method_manager.h
|
| index 5318ee91b9d495221eb632b7fa29db8fe5557304..1ef694e7018a54b48d315f9bf9d8851ca73ae72a 100644
|
| --- a/chromeos/ime/input_method_manager.h
|
| +++ b/chromeos/ime/input_method_manager.h
|
| @@ -144,13 +144,12 @@ class CHROMEOS_EXPORT InputMethodManager {
|
| // Adds an input method extension. This function does not takes ownership of
|
| // |instance|.
|
| virtual void AddInputMethodExtension(
|
| - Profile* profile,
|
| - const std::string& imm_id,
|
| + const std::string& extension_id,
|
| + const InputMethodDescriptors& descriptors,
|
| InputMethodEngineInterface* instance) = 0;
|
|
|
| // Removes an input method extension.
|
| - virtual void RemoveInputMethodExtension(Profile* profile,
|
| - const std::string& id) = 0;
|
| + virtual void RemoveInputMethodExtension(const std::string& extension_id) = 0;
|
|
|
| // Returns a list of descriptors for all Input Method Extensions.
|
| virtual void GetInputMethodExtensions(InputMethodDescriptors* result) = 0;
|
|
|