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 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h" | 5 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 namespace input_method { | 8 namespace input_method { |
9 | 9 |
10 MockInputMethodManager::MockInputMethodManager() | 10 MockInputMethodManager::MockInputMethodManager() |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 93 |
94 void MockInputMethodManager::ChangeInputMethod( | 94 void MockInputMethodManager::ChangeInputMethod( |
95 const std::string& input_method_id) { | 95 const std::string& input_method_id) { |
96 } | 96 } |
97 | 97 |
98 void MockInputMethodManager::ActivateInputMethodMenuItem( | 98 void MockInputMethodManager::ActivateInputMethodMenuItem( |
99 const std::string& key) { | 99 const std::string& key) { |
100 } | 100 } |
101 | 101 |
102 void MockInputMethodManager::AddInputMethodExtension( | 102 void MockInputMethodManager::AddInputMethodExtension( |
103 Profile* profile, | 103 const std::string& extension_id, |
104 const std::string& id, | 104 const InputMethodDescriptors& descriptors, |
105 InputMethodEngineInterface* instance) { | 105 InputMethodEngineInterface* instance) { |
106 } | 106 } |
107 | 107 |
108 void MockInputMethodManager::RemoveInputMethodExtension(Profile* profile, | 108 void MockInputMethodManager::RemoveInputMethodExtension( |
109 const std::string& id) { | 109 const std::string& extension_id) { |
110 } | 110 } |
111 | 111 |
112 void MockInputMethodManager::GetInputMethodExtensions( | 112 void MockInputMethodManager::GetInputMethodExtensions( |
113 InputMethodDescriptors* result) { | 113 InputMethodDescriptors* result) { |
114 } | 114 } |
115 | 115 |
116 void MockInputMethodManager::SetEnabledExtensionImes( | 116 void MockInputMethodManager::SetEnabledExtensionImes( |
117 std::vector<std::string>* ids) { | 117 std::vector<std::string>* ids) { |
118 } | 118 } |
119 | 119 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 return true; | 187 return true; |
188 } | 188 } |
189 | 189 |
190 bool MockInputMethodManager::MigrateInputMethods( | 190 bool MockInputMethodManager::MigrateInputMethods( |
191 std::vector<std::string>* input_method_ids) { | 191 std::vector<std::string>* input_method_ids) { |
192 return false; | 192 return false; |
193 } | 193 } |
194 | 194 |
195 } // namespace input_method | 195 } // namespace input_method |
196 } // namespace chromeos | 196 } // namespace chromeos |
OLD | NEW |