Index: chrome/browser/chromeos/input_method/input_method_manager.h |
diff --git a/chrome/browser/chromeos/input_method/input_method_manager.h b/chrome/browser/chromeos/input_method/input_method_manager.h |
index c47d4e9b570d5f149e445f26f810aae221467c17..9c348b20ff398051afac7d6f2ee5d61473011858 100644 |
--- a/chrome/browser/chromeos/input_method/input_method_manager.h |
+++ b/chrome/browser/chromeos/input_method/input_method_manager.h |
@@ -26,7 +26,6 @@ namespace input_method { |
class VirtualKeyboard; |
- |
// This class manages input methodshandles. Classes can add themselves as |
// observers. Clients can get an instance of this library class by: |
// InputMethodManager::GetInstance(). |
@@ -166,6 +165,15 @@ class InputMethodManager { |
const std::set<std::string>& layouts, |
bool is_system) = 0; |
+ // Sets user preference on virtual keyboard selection. |
+ // See virtual_keyboard_selector.h for details. |
+ virtual bool SetVirtualKeyboardPreference(const std::string& input_method_id, |
+ const GURL& extention_url) = 0; |
+ |
+ // Clears all preferences on virtual keyboard selection. |
+ // See virtual_keyboard_selector.h for details. |
+ virtual void ClearVirtualKeyboardPreference() = 0; |
+ |
virtual input_method::InputMethodDescriptor previous_input_method() const = 0; |
virtual input_method::InputMethodDescriptor current_input_method() const = 0; |