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 <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 InputMethodManager::ImeMenuObserver* observer) override; | 168 InputMethodManager::ImeMenuObserver* observer) override; |
169 std::unique_ptr<InputMethodDescriptors> GetSupportedInputMethods() | 169 std::unique_ptr<InputMethodDescriptors> GetSupportedInputMethods() |
170 const override; | 170 const override; |
171 void ActivateInputMethodMenuItem(const std::string& key) override; | 171 void ActivateInputMethodMenuItem(const std::string& key) override; |
172 bool IsISOLevel5ShiftUsedByCurrentInputMethod() const override; | 172 bool IsISOLevel5ShiftUsedByCurrentInputMethod() const override; |
173 bool IsAltGrUsedByCurrentInputMethod() const override; | 173 bool IsAltGrUsedByCurrentInputMethod() const override; |
174 void NotifyImeMenuItemsChanged( | 174 void NotifyImeMenuItemsChanged( |
175 const std::string& engine_id, | 175 const std::string& engine_id, |
176 const std::vector<InputMethodManager::MenuItem>& items) override; | 176 const std::vector<InputMethodManager::MenuItem>& items) override; |
177 void MaybeNotifyImeMenuActivationChanged() override; | 177 void MaybeNotifyImeMenuActivationChanged() override; |
| 178 void OverrideKeyboardUrlRef(const std::string& keyset) override; |
| 179 bool IsEmojiHandwritingVoiceOnImeMenuEnabled() override; |
178 | 180 |
179 // chromeos::UserAddingScreen: | 181 // chromeos::UserAddingScreen: |
180 void OnUserAddingStarted() override; | 182 void OnUserAddingStarted() override; |
181 void OnUserAddingFinished() override; | 183 void OnUserAddingFinished() override; |
182 | 184 |
183 ImeKeyboard* GetImeKeyboard() override; | 185 ImeKeyboard* GetImeKeyboard() override; |
184 InputMethodUtil* GetInputMethodUtil() override; | 186 InputMethodUtil* GetInputMethodUtil() override; |
185 ComponentExtensionIMEManager* GetComponentExtensionIMEManager() override; | 187 ComponentExtensionIMEManager* GetComponentExtensionIMEManager() override; |
186 bool IsLoginKeyboard(const std::string& layout) const override; | 188 bool IsLoginKeyboard(const std::string& layout) const override; |
187 | 189 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; | 298 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; |
297 ProfileEngineMap engine_map_; | 299 ProfileEngineMap engine_map_; |
298 | 300 |
299 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 301 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
300 }; | 302 }; |
301 | 303 |
302 } // namespace input_method | 304 } // namespace input_method |
303 } // namespace chromeos | 305 } // namespace chromeos |
304 | 306 |
305 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 307 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
OLD | NEW |