| Index: chrome/browser/chromeos/input_method/input_method_manager.cc
|
| diff --git a/chrome/browser/chromeos/input_method/input_method_manager.cc b/chrome/browser/chromeos/input_method/input_method_manager.cc
|
| index 0f532f86f4ba6ac84f83f2295c357c7a52bc1e36..f1cf15cd432ed8d28a3895afe275a6436b427963 100644
|
| --- a/chrome/browser/chromeos/input_method/input_method_manager.cc
|
| +++ b/chrome/browser/chromeos/input_method/input_method_manager.cc
|
| @@ -310,6 +310,16 @@ class InputMethodManagerImpl : public InputMethodManager,
|
| is_system);
|
| }
|
|
|
| + virtual bool SetVirtualKeyboardPreference(const std::string& input_method_id,
|
| + const GURL& extention_url) {
|
| + return virtual_keyboard_selector_.SetUserPreference(
|
| + input_method_id, extention_url);
|
| + }
|
| +
|
| + virtual void ClearAllVirtualKeyboardPreferences() {
|
| + return virtual_keyboard_selector_.ClearAllUserPreferences();
|
| + }
|
| +
|
| static InputMethodManagerImpl* GetInstance() {
|
| return Singleton<InputMethodManagerImpl,
|
| DefaultSingletonTraits<InputMethodManagerImpl> >::get();
|
|
|