| 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 "chromeos/dbus/mock_dbus_thread_manager_without_gmock.h" | 5 #include "chromeos/dbus/mock_dbus_thread_manager_without_gmock.h" |
| 6 | 6 |
| 7 #include "chromeos/dbus/ibus/mock_ibus_client.h" | 7 #include "chromeos/dbus/ibus/mock_ibus_client.h" |
| 8 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" | 8 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" |
| 9 #include "chromeos/dbus/ibus/mock_ibus_engine_service.h" | 9 #include "chromeos/dbus/ibus/mock_ibus_engine_service.h" |
| 10 #include "chromeos/dbus/ibus/mock_ibus_input_context_client.h" | 10 #include "chromeos/dbus/ibus/mock_ibus_input_context_client.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 CryptohomeClient* MockDBusThreadManagerWithoutGMock::GetCryptohomeClient() { | 76 CryptohomeClient* MockDBusThreadManagerWithoutGMock::GetCryptohomeClient() { |
| 77 NOTIMPLEMENTED(); | 77 NOTIMPLEMENTED(); |
| 78 return NULL; | 78 return NULL; |
| 79 } | 79 } |
| 80 | 80 |
| 81 DebugDaemonClient* MockDBusThreadManagerWithoutGMock::GetDebugDaemonClient() { | 81 DebugDaemonClient* MockDBusThreadManagerWithoutGMock::GetDebugDaemonClient() { |
| 82 NOTIMPLEMENTED(); | 82 NOTIMPLEMENTED(); |
| 83 return NULL; | 83 return NULL; |
| 84 } | 84 } |
| 85 | 85 |
| 86 FlimflamDeviceClient* | 86 ShillDeviceClient* |
| 87 MockDBusThreadManagerWithoutGMock::GetFlimflamDeviceClient() { | 87 MockDBusThreadManagerWithoutGMock::GetShillDeviceClient() { |
| 88 NOTIMPLEMENTED(); | 88 NOTIMPLEMENTED(); |
| 89 return NULL; | 89 return NULL; |
| 90 } | 90 } |
| 91 | 91 |
| 92 FlimflamIPConfigClient* | 92 ShillIPConfigClient* |
| 93 MockDBusThreadManagerWithoutGMock::GetFlimflamIPConfigClient() { | 93 MockDBusThreadManagerWithoutGMock::GetShillIPConfigClient() { |
| 94 NOTIMPLEMENTED(); | 94 NOTIMPLEMENTED(); |
| 95 return NULL; | 95 return NULL; |
| 96 } | 96 } |
| 97 | 97 |
| 98 FlimflamManagerClient* | 98 ShillManagerClient* |
| 99 MockDBusThreadManagerWithoutGMock::GetFlimflamManagerClient() { | 99 MockDBusThreadManagerWithoutGMock::GetShillManagerClient() { |
| 100 NOTIMPLEMENTED(); | 100 NOTIMPLEMENTED(); |
| 101 return NULL; | 101 return NULL; |
| 102 } | 102 } |
| 103 | 103 |
| 104 FlimflamNetworkClient* | 104 ShillNetworkClient* |
| 105 MockDBusThreadManagerWithoutGMock::GetFlimflamNetworkClient() { | 105 MockDBusThreadManagerWithoutGMock::GetShillNetworkClient() { |
| 106 NOTIMPLEMENTED(); | 106 NOTIMPLEMENTED(); |
| 107 return NULL; | 107 return NULL; |
| 108 } | 108 } |
| 109 | 109 |
| 110 FlimflamProfileClient* | 110 ShillProfileClient* |
| 111 MockDBusThreadManagerWithoutGMock::GetFlimflamProfileClient() { | 111 MockDBusThreadManagerWithoutGMock::GetShillProfileClient() { |
| 112 NOTIMPLEMENTED(); | 112 NOTIMPLEMENTED(); |
| 113 return NULL; | 113 return NULL; |
| 114 } | 114 } |
| 115 | 115 |
| 116 FlimflamServiceClient* | 116 ShillServiceClient* |
| 117 MockDBusThreadManagerWithoutGMock::GetFlimflamServiceClient() { | 117 MockDBusThreadManagerWithoutGMock::GetShillServiceClient() { |
| 118 NOTIMPLEMENTED(); | 118 NOTIMPLEMENTED(); |
| 119 return NULL; | 119 return NULL; |
| 120 } | 120 } |
| 121 | 121 |
| 122 GsmSMSClient* MockDBusThreadManagerWithoutGMock::GetGsmSMSClient() { | 122 GsmSMSClient* MockDBusThreadManagerWithoutGMock::GetGsmSMSClient() { |
| 123 NOTIMPLEMENTED(); | 123 NOTIMPLEMENTED(); |
| 124 return NULL; | 124 return NULL; |
| 125 } | 125 } |
| 126 | 126 |
| 127 ImageBurnerClient* MockDBusThreadManagerWithoutGMock::GetImageBurnerClient() { | 127 ImageBurnerClient* MockDBusThreadManagerWithoutGMock::GetImageBurnerClient() { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 IBusEngineService* MockDBusThreadManagerWithoutGMock::GetIBusEngineService( | 203 IBusEngineService* MockDBusThreadManagerWithoutGMock::GetIBusEngineService( |
| 204 const dbus::ObjectPath& object_path) { | 204 const dbus::ObjectPath& object_path) { |
| 205 return mock_ibus_engine_service_.get(); | 205 return mock_ibus_engine_service_.get(); |
| 206 } | 206 } |
| 207 | 207 |
| 208 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( | 208 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( |
| 209 const dbus::ObjectPath& object_path) { | 209 const dbus::ObjectPath& object_path) { |
| 210 } | 210 } |
| 211 | 211 |
| 212 } // namespace chromeos | 212 } // namespace chromeos |
| OLD | NEW |