| 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 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 namespace chromeos { | 9 namespace chromeos { |
| 10 namespace input_method { | 10 namespace input_method { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 void MockInputMethodManager::SetCurrentInputMethodId( | 245 void MockInputMethodManager::SetCurrentInputMethodId( |
| 246 const std::string& input_method_id) { | 246 const std::string& input_method_id) { |
| 247 state_->current_input_method_id = input_method_id; | 247 state_->current_input_method_id = input_method_id; |
| 248 } | 248 } |
| 249 | 249 |
| 250 void MockInputMethodManager::ImeMenuActivationChanged(bool is_active) {} | 250 void MockInputMethodManager::ImeMenuActivationChanged(bool is_active) {} |
| 251 | 251 |
| 252 void MockInputMethodManager::NotifyImeMenuItemsChanged( | 252 void MockInputMethodManager::NotifyImeMenuItemsChanged( |
| 253 const std::string& engine_id, | 253 const std::string& engine_id, |
| 254 const std::vector<InputMethodManager::MenuItem>& items) {} | 254 const std::vector<InputMethodManager::MenuItem>& items) {} |
| 255 |
| 256 void MockInputMethodManager::MaybeNotifyImeMenuActivationChanged() {} |
| 257 |
| 255 } // namespace input_method | 258 } // namespace input_method |
| 256 } // namespace chromeos | 259 } // namespace chromeos |
| OLD | NEW |