| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 virtual void AddInputMethodExtension( | 72 virtual void AddInputMethodExtension( |
| 73 const std::string& id, | 73 const std::string& id, |
| 74 InputMethodEngineInterface* instance) OVERRIDE; | 74 InputMethodEngineInterface* instance) OVERRIDE; |
| 75 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; | 75 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; |
| 76 virtual void GetInputMethodExtensions( | 76 virtual void GetInputMethodExtensions( |
| 77 InputMethodDescriptors* result) OVERRIDE; | 77 InputMethodDescriptors* result) OVERRIDE; |
| 78 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; | 78 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; |
| 79 virtual void SetInputMethodLoginDefault() OVERRIDE; | 79 virtual void SetInputMethodLoginDefault() OVERRIDE; |
| 80 virtual void SetInputMethodLoginDefaultFromVPD( | 80 virtual void SetInputMethodLoginDefaultFromVPD( |
| 81 const std::string& locale, const std::string& layout) OVERRIDE; | 81 const std::string& locale, const std::string& layout) OVERRIDE; |
| 82 virtual bool SwitchToNextInputMethod() OVERRIDE; | 82 virtual void SwitchToNextInputMethod() OVERRIDE; |
| 83 virtual bool SwitchToPreviousInputMethod( | 83 virtual bool SwitchToPreviousInputMethod( |
| 84 const ui::Accelerator& accelerator) OVERRIDE; | 84 const ui::Accelerator& accelerator) OVERRIDE; |
| 85 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; | 85 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; |
| 86 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; | 86 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; |
| 87 virtual bool IsISOLevel5ShiftUsedByCurrentInputMethod() const OVERRIDE; | 87 virtual bool IsISOLevel5ShiftUsedByCurrentInputMethod() const OVERRIDE; |
| 88 virtual bool IsAltGrUsedByCurrentInputMethod() const OVERRIDE; | 88 virtual bool IsAltGrUsedByCurrentInputMethod() const OVERRIDE; |
| 89 | 89 |
| 90 virtual ImeKeyboard* GetImeKeyboard() OVERRIDE; | 90 virtual ImeKeyboard* GetImeKeyboard() OVERRIDE; |
| 91 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; | 91 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; |
| 92 virtual ComponentExtensionIMEManager* | 92 virtual ComponentExtensionIMEManager* |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; | 229 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; |
| 230 ProfileEngineMap profile_engine_map_; | 230 ProfileEngineMap profile_engine_map_; |
| 231 | 231 |
| 232 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 232 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
| 233 }; | 233 }; |
| 234 | 234 |
| 235 } // namespace input_method | 235 } // namespace input_method |
| 236 } // namespace chromeos | 236 } // namespace chromeos |
| 237 | 237 |
| 238 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 238 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
| OLD | NEW |