| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; | 84 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; |
| 85 virtual bool IsISOLevel5ShiftUsedByCurrentInputMethod() const OVERRIDE; | 85 virtual bool IsISOLevel5ShiftUsedByCurrentInputMethod() const OVERRIDE; |
| 86 virtual bool IsAltGrUsedByCurrentInputMethod() const OVERRIDE; | 86 virtual bool IsAltGrUsedByCurrentInputMethod() const OVERRIDE; |
| 87 | 87 |
| 88 virtual ImeKeyboard* GetImeKeyboard() OVERRIDE; | 88 virtual ImeKeyboard* GetImeKeyboard() OVERRIDE; |
| 89 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; | 89 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; |
| 90 virtual ComponentExtensionIMEManager* | 90 virtual ComponentExtensionIMEManager* |
| 91 GetComponentExtensionIMEManager() OVERRIDE; | 91 GetComponentExtensionIMEManager() OVERRIDE; |
| 92 virtual bool IsLoginKeyboard(const std::string& layout) const OVERRIDE; | 92 virtual bool IsLoginKeyboard(const std::string& layout) const OVERRIDE; |
| 93 | 93 |
| 94 virtual bool MigrateXkbInputMethods( | 94 virtual bool MigrateInputMethods( |
| 95 std::vector<std::string>* input_method_ids) OVERRIDE; | 95 std::vector<std::string>* input_method_ids) OVERRIDE; |
| 96 | 96 |
| 97 // Sets |candidate_window_controller_|. | 97 // Sets |candidate_window_controller_|. |
| 98 void SetCandidateWindowControllerForTesting( | 98 void SetCandidateWindowControllerForTesting( |
| 99 CandidateWindowController* candidate_window_controller); | 99 CandidateWindowController* candidate_window_controller); |
| 100 // Sets |keyboard_|. | 100 // Sets |keyboard_|. |
| 101 void SetImeKeyboardForTesting(ImeKeyboard* keyboard); | 101 void SetImeKeyboardForTesting(ImeKeyboard* keyboard); |
| 102 // Initialize |component_extension_manager_|. | 102 // Initialize |component_extension_manager_|. |
| 103 void InitializeComponentExtensionForTesting( | 103 void InitializeComponentExtensionForTesting( |
| 104 scoped_ptr<ComponentExtensionIMEManagerDelegate> delegate); | 104 scoped_ptr<ComponentExtensionIMEManagerDelegate> delegate); |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; | 223 typedef std::map<Profile*, EngineMap, ProfileCompare> ProfileEngineMap; |
| 224 ProfileEngineMap profile_engine_map_; | 224 ProfileEngineMap profile_engine_map_; |
| 225 | 225 |
| 226 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 226 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
| 227 }; | 227 }; |
| 228 | 228 |
| 229 } // namespace input_method | 229 } // namespace input_method |
| 230 } // namespace chromeos | 230 } // namespace chromeos |
| 231 | 231 |
| 232 #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 |