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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 const std::string& id, | 79 const std::string& id, |
80 const std::string& name, | 80 const std::string& name, |
81 const std::vector<std::string>& layouts, | 81 const std::vector<std::string>& layouts, |
82 const std::vector<std::string>& languages, | 82 const std::vector<std::string>& languages, |
83 const GURL& options_page, | 83 const GURL& options_page, |
84 InputMethodEngine* instance) OVERRIDE; | 84 InputMethodEngine* instance) OVERRIDE; |
85 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; | 85 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; |
86 virtual void GetInputMethodExtensions( | 86 virtual void GetInputMethodExtensions( |
87 InputMethodDescriptors* result) OVERRIDE; | 87 InputMethodDescriptors* result) OVERRIDE; |
88 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; | 88 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; |
| 89 virtual void SetInputMethodDefault() OVERRIDE; |
89 virtual bool SwitchToNextInputMethod() OVERRIDE; | 90 virtual bool SwitchToNextInputMethod() OVERRIDE; |
90 virtual bool SwitchToPreviousInputMethod( | 91 virtual bool SwitchToPreviousInputMethod( |
91 const ui::Accelerator& accelerator) OVERRIDE; | 92 const ui::Accelerator& accelerator) OVERRIDE; |
92 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; | 93 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; |
93 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; | 94 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; |
94 virtual InputMethodPropertyList | 95 virtual InputMethodPropertyList |
95 GetCurrentInputMethodProperties() const OVERRIDE; | 96 GetCurrentInputMethodProperties() const OVERRIDE; |
96 virtual XKeyboard* GetXKeyboard() OVERRIDE; | 97 virtual XKeyboard* GetXKeyboard() OVERRIDE; |
97 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; | 98 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; |
98 virtual ComponentExtensionIMEManager* | 99 virtual ComponentExtensionIMEManager* |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 // login screen) | 240 // login screen) |
240 FullLatinKeyboardLayoutChecker full_latin_keyboard_checker; | 241 FullLatinKeyboardLayoutChecker full_latin_keyboard_checker; |
241 | 242 |
242 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); | 243 DISALLOW_COPY_AND_ASSIGN(InputMethodManagerImpl); |
243 }; | 244 }; |
244 | 245 |
245 } // namespace input_method | 246 } // namespace input_method |
246 } // namespace chromeos | 247 } // namespace chromeos |
247 | 248 |
248 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ | 249 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_MANAGER_IMPL_H_ |
OLD | NEW |