OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 GetSupportedInputMethods() const OVERRIDE; | 58 GetSupportedInputMethods() const OVERRIDE; |
59 virtual scoped_ptr<InputMethodDescriptors> | 59 virtual scoped_ptr<InputMethodDescriptors> |
60 GetActiveInputMethods() const OVERRIDE; | 60 GetActiveInputMethods() const OVERRIDE; |
61 virtual size_t GetNumActiveInputMethods() const OVERRIDE; | 61 virtual size_t GetNumActiveInputMethods() const OVERRIDE; |
62 virtual void EnableLayouts(const std::string& language_code, | 62 virtual void EnableLayouts(const std::string& language_code, |
63 const std::string& initial_layout) OVERRIDE; | 63 const std::string& initial_layout) OVERRIDE; |
64 virtual bool EnableInputMethods( | 64 virtual bool EnableInputMethods( |
65 const std::vector<std::string>& new_active_input_method_ids) OVERRIDE; | 65 const std::vector<std::string>& new_active_input_method_ids) OVERRIDE; |
66 virtual bool MigrateOldInputMethods( | 66 virtual bool MigrateOldInputMethods( |
67 std::vector<std::string>* input_method_ids) OVERRIDE; | 67 std::vector<std::string>* input_method_ids) OVERRIDE; |
| 68 virtual bool MigrateKoreanKeyboard( |
| 69 const std::string& keyboard_id, |
| 70 std::vector<std::string>* input_method_ids) OVERRIDE; |
68 virtual bool SetInputMethodConfig( | 71 virtual bool SetInputMethodConfig( |
69 const std::string& section, | 72 const std::string& section, |
70 const std::string& config_name, | 73 const std::string& config_name, |
71 const InputMethodConfigValue& value) OVERRIDE; | 74 const InputMethodConfigValue& value) OVERRIDE; |
72 virtual void ChangeInputMethod(const std::string& input_method_id) OVERRIDE; | 75 virtual void ChangeInputMethod(const std::string& input_method_id) OVERRIDE; |
73 virtual void ActivateInputMethodProperty(const std::string& key) OVERRIDE; | 76 virtual void ActivateInputMethodProperty(const std::string& key) OVERRIDE; |
74 virtual void AddInputMethodExtension( | 77 virtual void AddInputMethodExtension( |
75 const std::string& id, | 78 const std::string& id, |
76 const std::string& name, | 79 const std::string& name, |
77 const std::vector<std::string>& layouts, | 80 const std::vector<std::string>& layouts, |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 | 223 |
221 base::WeakPtrFactory<InputMethodManagerImpl> weak_ptr_factory_; | 224 base::WeakPtrFactory<InputMethodManagerImpl> weak_ptr_factory_; |
222 | 225 |
223 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 226 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
224 }; | 227 }; |
225 | 228 |
226 } // namespace input_method | 229 } // namespace input_method |
227 } // namespace chromeos | 230 } // namespace chromeos |
228 | 231 |
229 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 232 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
OLD | NEW |