| 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 ShowInputViewWithUrl(const std::string& appended_url) override; |
| 178 | 179 |
| 179 // chromeos::UserAddingScreen: | 180 // chromeos::UserAddingScreen: |
| 180 void OnUserAddingStarted() override; | 181 void OnUserAddingStarted() override; |
| 181 void OnUserAddingFinished() override; | 182 void OnUserAddingFinished() override; |
| 182 | 183 |
| 183 ImeKeyboard* GetImeKeyboard() override; | 184 ImeKeyboard* GetImeKeyboard() override; |
| 184 InputMethodUtil* GetInputMethodUtil() override; | 185 InputMethodUtil* GetInputMethodUtil() override; |
| 185 ComponentExtensionIMEManager* GetComponentExtensionIMEManager() override; | 186 ComponentExtensionIMEManager* GetComponentExtensionIMEManager() override; |
| 186 bool IsLoginKeyboard(const std::string& layout) const override; | 187 bool IsLoginKeyboard(const std::string& layout) const override; |
| 187 | 188 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; | 297 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; |
| 297 ProfileEngineMap engine_map_; | 298 ProfileEngineMap engine_map_; |
| 298 | 299 |
| 299 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 300 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
| 300 }; | 301 }; |
| 301 | 302 |
| 302 } // namespace input_method | 303 } // namespace input_method |
| 303 } // namespace chromeos | 304 } // namespace chromeos |
| 304 | 305 |
| 305 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 306 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
| OLD | NEW |