| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 std::vector<std::string>* ids) { | 112 std::vector<std::string>* ids) { |
| 113 } | 113 } |
| 114 | 114 |
| 115 void MockInputMethodManager::SetInputMethodLoginDefault() { | 115 void MockInputMethodManager::SetInputMethodLoginDefault() { |
| 116 } | 116 } |
| 117 | 117 |
| 118 void MockInputMethodManager::SetInputMethodLoginDefaultFromVPD( | 118 void MockInputMethodManager::SetInputMethodLoginDefaultFromVPD( |
| 119 const std::string& locale, const std::string& layout) { | 119 const std::string& locale, const std::string& layout) { |
| 120 } | 120 } |
| 121 | 121 |
| 122 bool MockInputMethodManager::SwitchToNextInputMethod() { | 122 void MockInputMethodManager::SwitchToNextInputMethod() { |
| 123 return true; | |
| 124 } | 123 } |
| 125 | 124 |
| 126 bool MockInputMethodManager::SwitchToPreviousInputMethod( | 125 bool MockInputMethodManager::SwitchToPreviousInputMethod( |
| 127 const ui::Accelerator& accelerator) { | 126 const ui::Accelerator& accelerator) { |
| 128 return true; | 127 return true; |
| 129 } | 128 } |
| 130 | 129 |
| 131 bool MockInputMethodManager::SwitchInputMethod( | 130 bool MockInputMethodManager::SwitchInputMethod( |
| 132 const ui::Accelerator& accelerator) { | 131 const ui::Accelerator& accelerator) { |
| 133 return true; | 132 return true; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 return true; | 181 return true; |
| 183 } | 182 } |
| 184 | 183 |
| 185 bool MockInputMethodManager::MigrateInputMethods( | 184 bool MockInputMethodManager::MigrateInputMethods( |
| 186 std::vector<std::string>* input_method_ids) { | 185 std::vector<std::string>* input_method_ids) { |
| 187 return false; | 186 return false; |
| 188 } | 187 } |
| 189 | 188 |
| 190 } // namespace input_method | 189 } // namespace input_method |
| 191 } // namespace chromeos | 190 } // namespace chromeos |
| OLD | NEW |