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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 NOTIMPLEMENTED(); | 128 NOTIMPLEMENTED(); |
129 return NULL; | 129 return NULL; |
130 } | 130 } |
131 | 131 |
132 IntrospectableClient* | 132 IntrospectableClient* |
133 MockDBusThreadManagerWithoutGMock::GetIntrospectableClient() { | 133 MockDBusThreadManagerWithoutGMock::GetIntrospectableClient() { |
134 NOTIMPLEMENTED(); | 134 NOTIMPLEMENTED(); |
135 return NULL; | 135 return NULL; |
136 } | 136 } |
137 | 137 |
| 138 MediaTransferProtocolDaemonClient* |
| 139 MockDBusThreadManagerWithoutGMock::GetMediaTransferProtocolDaemonClient() { |
| 140 NOTIMPLEMENTED(); |
| 141 return NULL; |
| 142 } |
| 143 |
138 ModemMessagingClient* | 144 ModemMessagingClient* |
139 MockDBusThreadManagerWithoutGMock::GetModemMessagingClient() { | 145 MockDBusThreadManagerWithoutGMock::GetModemMessagingClient() { |
140 NOTIMPLEMENTED(); | 146 NOTIMPLEMENTED(); |
141 return NULL; | 147 return NULL; |
142 } | 148 } |
143 | 149 |
144 PowerManagerClient* MockDBusThreadManagerWithoutGMock::GetPowerManagerClient() { | 150 PowerManagerClient* MockDBusThreadManagerWithoutGMock::GetPowerManagerClient() { |
145 NOTIMPLEMENTED(); | 151 NOTIMPLEMENTED(); |
146 return NULL; | 152 return NULL; |
147 } | 153 } |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 IBusEngineService* MockDBusThreadManagerWithoutGMock::GetIBusEngineService( | 197 IBusEngineService* MockDBusThreadManagerWithoutGMock::GetIBusEngineService( |
192 const dbus::ObjectPath& object_path) { | 198 const dbus::ObjectPath& object_path) { |
193 return mock_ibus_engine_service_.get(); | 199 return mock_ibus_engine_service_.get(); |
194 } | 200 } |
195 | 201 |
196 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( | 202 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( |
197 const dbus::ObjectPath& object_path) { | 203 const dbus::ObjectPath& object_path) { |
198 } | 204 } |
199 | 205 |
200 } // namespace chromeos | 206 } // namespace chromeos |
OLD | NEW |