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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; | 74 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; |
75 virtual void GetInputMethodExtensions( | 75 virtual void GetInputMethodExtensions( |
76 InputMethodDescriptors* result) OVERRIDE; | 76 InputMethodDescriptors* result) OVERRIDE; |
77 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; | 77 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; |
78 virtual void SetInputMethodLoginDefault() OVERRIDE; | 78 virtual void SetInputMethodLoginDefault() OVERRIDE; |
79 virtual bool SwitchToNextInputMethod() OVERRIDE; | 79 virtual bool SwitchToNextInputMethod() OVERRIDE; |
80 virtual bool SwitchToPreviousInputMethod( | 80 virtual bool SwitchToPreviousInputMethod( |
81 const ui::Accelerator& accelerator) OVERRIDE; | 81 const ui::Accelerator& accelerator) OVERRIDE; |
82 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; | 82 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; |
83 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; | 83 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; |
| 84 virtual bool IsISOLevel5ShiftUsedByCurrentInputMethod() const OVERRIDE; |
| 85 virtual bool IsAltGrUsedByCurrentInputMethod() const OVERRIDE; |
84 | 86 |
85 virtual XKeyboard* GetXKeyboard() OVERRIDE; | 87 virtual XKeyboard* GetXKeyboard() OVERRIDE; |
86 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; | 88 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; |
87 virtual ComponentExtensionIMEManager* | 89 virtual ComponentExtensionIMEManager* |
88 GetComponentExtensionIMEManager() OVERRIDE; | 90 GetComponentExtensionIMEManager() OVERRIDE; |
89 virtual bool IsLoginKeyboard(const std::string& layout) const OVERRIDE; | 91 virtual bool IsLoginKeyboard(const std::string& layout) const OVERRIDE; |
90 | 92 |
91 virtual bool MigrateXkbInputMethods( | 93 virtual bool MigrateXkbInputMethods( |
92 std::vector<std::string>* input_method_ids) OVERRIDE; | 94 std::vector<std::string>* input_method_ids) OVERRIDE; |
93 | 95 |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 | 212 |
211 base::WeakPtrFactory<InputMethodManagerImpl> weak_ptr_factory_; | 213 base::WeakPtrFactory<InputMethodManagerImpl> weak_ptr_factory_; |
212 | 214 |
213 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 215 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
214 }; | 216 }; |
215 | 217 |
216 } // namespace input_method | 218 } // namespace input_method |
217 } // namespace chromeos | 219 } // namespace chromeos |
218 | 220 |
219 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 221 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
OLD | NEW |