| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 255 |
| 256 void MockInputMethodManager::MaybeNotifyImeMenuActivationChanged() {} | 256 void MockInputMethodManager::MaybeNotifyImeMenuActivationChanged() {} |
| 257 | 257 |
| 258 void MockInputMethodManager::ShowInputViewWithUrl( |
| 259 const std::string& appended_url) {} |
| 260 |
| 258 } // namespace input_method | 261 } // namespace input_method |
| 259 } // namespace chromeos | 262 } // namespace chromeos |
| OLD | NEW |