| 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 <string> |
| 5 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" | 6 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" |
| 6 | 7 |
| 7 namespace chromeos { | 8 namespace chromeos { |
| 8 | 9 |
| 9 MockIBusEngineFactoryService::MockIBusEngineFactoryService() { | 10 MockIBusEngineFactoryService::MockIBusEngineFactoryService() { |
| 10 } | 11 } |
| 11 | 12 |
| 12 MockIBusEngineFactoryService::~MockIBusEngineFactoryService() { | 13 MockIBusEngineFactoryService::~MockIBusEngineFactoryService() { |
| 13 } | 14 } |
| 14 | 15 |
| 15 void MockIBusEngineFactoryService::SetCreateEngineHandler( | 16 void MockIBusEngineFactoryService::SetCreateEngineHandler( |
| 17 const std::string& engine_id, |
| 16 const CreateEngineHandler& create_engine_handler) { | 18 const CreateEngineHandler& create_engine_handler) { |
| 17 } | 19 } |
| 18 | 20 |
| 19 void MockIBusEngineFactoryService::UnsetCreateEngineHandler() { | 21 void MockIBusEngineFactoryService::UnsetCreateEngineHandler( |
| 22 const std::string& engine_id) { |
| 20 } | 23 } |
| 21 | 24 |
| 22 } // namespace chromeos | 25 } // namespace chromeos |
| OLD | NEW |