diff options
Diffstat (limited to 'chromeos/ime/input_method_manager.h')
-rw-r--r-- | chromeos/ime/input_method_manager.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/chromeos/ime/input_method_manager.h b/chromeos/ime/input_method_manager.h index a822a94..2eea80e 100644 --- a/chromeos/ime/input_method_manager.h +++ b/chromeos/ime/input_method_manager.h @@ -12,7 +12,6 @@ #include "base/memory/scoped_ptr.h" #include "chromeos/chromeos_export.h" #include "chromeos/ime/input_method_descriptor.h" -#include "chromeos/ime/input_method_property.h" namespace ui { class Accelerator; @@ -44,8 +43,6 @@ class CHROMEOS_EXPORT InputMethodManager { // indicates whether the user should be notified of this change. virtual void InputMethodChanged(InputMethodManager* manager, bool show_message) = 0; - // Called when the list of properties is changed. - virtual void InputMethodPropertyChanged(InputMethodManager* manager) = 0; }; // CandidateWindowObserver is notified of events related to the candidate @@ -127,7 +124,7 @@ class CHROMEOS_EXPORT InputMethodManager { const std::vector<std::string>& initial_layouts) = 0; // Activates the input method property specified by the |key|. - virtual void ActivateInputMethodProperty(const std::string& key) = 0; + virtual void ActivateInputMethodMenuItem(const std::string& key) = 0; // Updates the list of active input method IDs, and then starts or stops the // system input method framework as needed. @@ -160,13 +157,6 @@ class CHROMEOS_EXPORT InputMethodManager { // Gets the descriptor of the input method which is currently selected. virtual InputMethodDescriptor GetCurrentInputMethod() const = 0; - // Gets the list of input method properties. The list could be empty(). - virtual InputMethodPropertyList GetCurrentInputMethodProperties() const = 0; - - // Sets the list of input method properties. The list could be empty(). - virtual void SetCurrentInputMethodProperties( - const InputMethodPropertyList& property_list) = 0; - // Returns an X keyboard object which could be used to change the current XKB // layout, change the caps lock status, and set the auto repeat rate/interval. virtual XKeyboard* GetXKeyboard() = 0; |