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_MOCK_INPUT_METHOD_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ |
7 | 7 |
8 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 8 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
9 #include "chromeos/ime/fake_input_method_delegate.h" | 9 #include "chromeos/ime/fake_input_method_delegate.h" |
10 #include "chromeos/ime/fake_xkeyboard.h" | 10 #include "chromeos/ime/fake_xkeyboard.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 virtual size_t GetNumActiveInputMethods() const OVERRIDE; | 36 virtual size_t GetNumActiveInputMethods() const OVERRIDE; |
37 virtual const InputMethodDescriptor* GetInputMethodFromId( | 37 virtual const InputMethodDescriptor* GetInputMethodFromId( |
38 const std::string& input_method_id) const OVERRIDE; | 38 const std::string& input_method_id) const OVERRIDE; |
39 virtual void EnableLoginLayouts(const std::string& language_code, | 39 virtual void EnableLoginLayouts(const std::string& language_code, |
40 const std::string& initial_layout) OVERRIDE; | 40 const std::string& initial_layout) OVERRIDE; |
41 virtual bool EnableInputMethods( | 41 virtual bool EnableInputMethods( |
42 const std::vector<std::string>& new_active_input_method_ids) OVERRIDE; | 42 const std::vector<std::string>& new_active_input_method_ids) OVERRIDE; |
43 virtual bool EnableInputMethod( | 43 virtual bool EnableInputMethod( |
44 const std::string& new_active_input_method_id) OVERRIDE; | 44 const std::string& new_active_input_method_id) OVERRIDE; |
45 virtual void ChangeInputMethod(const std::string& input_method_id) OVERRIDE; | 45 virtual void ChangeInputMethod(const std::string& input_method_id) OVERRIDE; |
46 virtual void ActivateInputMethodMenuItem(const std::string& key) OVERRIDE; | 46 virtual void ActivateInputMethodProperty(const std::string& key) OVERRIDE; |
47 virtual void AddInputMethodExtension( | 47 virtual void AddInputMethodExtension( |
48 const std::string& id, | 48 const std::string& id, |
49 InputMethodEngineInterface* instance) OVERRIDE; | 49 InputMethodEngineInterface* instance) OVERRIDE; |
50 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; | 50 virtual void RemoveInputMethodExtension(const std::string& id) OVERRIDE; |
51 virtual void GetInputMethodExtensions( | 51 virtual void GetInputMethodExtensions( |
52 InputMethodDescriptors* result) OVERRIDE; | 52 InputMethodDescriptors* result) OVERRIDE; |
53 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; | 53 virtual void SetEnabledExtensionImes(std::vector<std::string>* ids) OVERRIDE; |
54 virtual void SetInputMethodDefault() OVERRIDE; | 54 virtual void SetInputMethodDefault() OVERRIDE; |
55 virtual bool SwitchToNextInputMethod() OVERRIDE; | 55 virtual bool SwitchToNextInputMethod() OVERRIDE; |
56 virtual bool SwitchToPreviousInputMethod( | 56 virtual bool SwitchToPreviousInputMethod( |
57 const ui::Accelerator& accelerator) OVERRIDE; | 57 const ui::Accelerator& accelerator) OVERRIDE; |
58 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; | 58 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) OVERRIDE; |
59 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; | 59 virtual InputMethodDescriptor GetCurrentInputMethod() const OVERRIDE; |
| 60 virtual InputMethodPropertyList |
| 61 GetCurrentInputMethodProperties() const OVERRIDE; |
| 62 virtual void SetCurrentInputMethodProperties( |
| 63 const InputMethodPropertyList& property_list) OVERRIDE; |
60 virtual XKeyboard* GetXKeyboard() OVERRIDE; | 64 virtual XKeyboard* GetXKeyboard() OVERRIDE; |
61 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; | 65 virtual InputMethodUtil* GetInputMethodUtil() OVERRIDE; |
62 virtual ComponentExtensionIMEManager* | 66 virtual ComponentExtensionIMEManager* |
63 GetComponentExtensionIMEManager() OVERRIDE; | 67 GetComponentExtensionIMEManager() OVERRIDE; |
64 virtual bool IsLoginKeyboard(const std::string& layout) const OVERRIDE; | 68 virtual bool IsLoginKeyboard(const std::string& layout) const OVERRIDE; |
65 | 69 |
66 // Sets an input method ID which will be returned by GetCurrentInputMethod(). | 70 // Sets an input method ID which will be returned by GetCurrentInputMethod(). |
67 void SetCurrentInputMethodId(const std::string& input_method_id) { | 71 void SetCurrentInputMethodId(const std::string& input_method_id) { |
68 current_input_method_id_ = input_method_id; | 72 current_input_method_id_ = input_method_id; |
69 } | 73 } |
(...skipping 18 matching lines...) Expand all Loading... |
88 // The active input method ids cache (actually default only) | 92 // The active input method ids cache (actually default only) |
89 std::vector<std::string> active_input_method_ids_; | 93 std::vector<std::string> active_input_method_ids_; |
90 | 94 |
91 DISALLOW_COPY_AND_ASSIGN(MockInputMethodManager); | 95 DISALLOW_COPY_AND_ASSIGN(MockInputMethodManager); |
92 }; | 96 }; |
93 | 97 |
94 } // namespace input_method | 98 } // namespace input_method |
95 } // namespace chromeos | 99 } // namespace chromeos |
96 | 100 |
97 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ | 101 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MOCK_INPUT_METHOD_MANAGER_H_ |
OLD | NEW |