| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 const std::string& id, | 103 const std::string& id, |
| 104 const InputMethodDescriptors& descriptors, |
| 104 InputMethodEngineInterface* instance) { | 105 InputMethodEngineInterface* instance) { |
| 105 } | 106 } |
| 106 | 107 |
| 107 void MockInputMethodManager::RemoveInputMethodExtension(const std::string& id) { | 108 void MockInputMethodManager::RemoveInputMethodExtension(const std::string& id) { |
| 108 } | 109 } |
| 109 | 110 |
| 110 void MockInputMethodManager::GetInputMethodExtensions( | 111 void MockInputMethodManager::GetInputMethodExtensions( |
| 111 InputMethodDescriptors* result) { | 112 InputMethodDescriptors* result) { |
| 112 } | 113 } |
| 113 | 114 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 return true; | 186 return true; |
| 186 } | 187 } |
| 187 | 188 |
| 188 bool MockInputMethodManager::MigrateInputMethods( | 189 bool MockInputMethodManager::MigrateInputMethods( |
| 189 std::vector<std::string>* input_method_ids) { | 190 std::vector<std::string>* input_method_ids) { |
| 190 return false; | 191 return false; |
| 191 } | 192 } |
| 192 | 193 |
| 193 } // namespace input_method | 194 } // namespace input_method |
| 194 } // namespace chromeos | 195 } // namespace chromeos |
| OLD | NEW |