| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 } | 158 } |
| 159 | 159 |
| 160 void MockInputMethodManager::set_application_locale(const std::string& value) { | 160 void MockInputMethodManager::set_application_locale(const std::string& value) { |
| 161 delegate_.set_active_locale(value); | 161 delegate_.set_active_locale(value); |
| 162 } | 162 } |
| 163 | 163 |
| 164 bool MockInputMethodManager::IsLoginKeyboard( | 164 bool MockInputMethodManager::IsLoginKeyboard( |
| 165 const std::string& layout) const { | 165 const std::string& layout) const { |
| 166 return true; | 166 return true; |
| 167 } | 167 } |
| 168 |
| 169 bool MigrateXkbInputMethods(std::vector<std::string>* input_method_ids) { |
| 170 return false; |
| 171 } |
| 172 |
| 168 } // namespace input_method | 173 } // namespace input_method |
| 169 } // namespace chromeos | 174 } // namespace chromeos |
| OLD | NEW |