| 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/dbus_thread_manager_observer.h" | 7 #include "chromeos/dbus/dbus_thread_manager_observer.h" |
| 8 #include "chromeos/dbus/ibus/mock_ibus_client.h" | 8 #include "chromeos/dbus/ibus/mock_ibus_client.h" |
| 9 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" | 9 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" |
| 10 #include "chromeos/dbus/ibus/mock_ibus_engine_service.h" | 10 #include "chromeos/dbus/ibus/mock_ibus_engine_service.h" |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 NOTIMPLEMENTED(); | 144 NOTIMPLEMENTED(); |
| 145 return NULL; | 145 return NULL; |
| 146 } | 146 } |
| 147 | 147 |
| 148 IntrospectableClient* | 148 IntrospectableClient* |
| 149 MockDBusThreadManagerWithoutGMock::GetIntrospectableClient() { | 149 MockDBusThreadManagerWithoutGMock::GetIntrospectableClient() { |
| 150 NOTIMPLEMENTED(); | 150 NOTIMPLEMENTED(); |
| 151 return NULL; | 151 return NULL; |
| 152 } | 152 } |
| 153 | 153 |
| 154 MediaTransferProtocolDaemonClient* | |
| 155 MockDBusThreadManagerWithoutGMock::GetMediaTransferProtocolDaemonClient() { | |
| 156 NOTIMPLEMENTED(); | |
| 157 return NULL; | |
| 158 } | |
| 159 | |
| 160 ModemMessagingClient* | 154 ModemMessagingClient* |
| 161 MockDBusThreadManagerWithoutGMock::GetModemMessagingClient() { | 155 MockDBusThreadManagerWithoutGMock::GetModemMessagingClient() { |
| 162 NOTIMPLEMENTED(); | 156 NOTIMPLEMENTED(); |
| 163 return NULL; | 157 return NULL; |
| 164 } | 158 } |
| 165 | 159 |
| 166 PermissionBrokerClient* | 160 PermissionBrokerClient* |
| 167 MockDBusThreadManagerWithoutGMock::GetPermissionBrokerClient() { | 161 MockDBusThreadManagerWithoutGMock::GetPermissionBrokerClient() { |
| 168 NOTIMPLEMENTED(); | 162 NOTIMPLEMENTED(); |
| 169 return NULL; | 163 return NULL; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 IBusEngineService* MockDBusThreadManagerWithoutGMock::GetIBusEngineService( | 213 IBusEngineService* MockDBusThreadManagerWithoutGMock::GetIBusEngineService( |
| 220 const dbus::ObjectPath& object_path) { | 214 const dbus::ObjectPath& object_path) { |
| 221 return mock_ibus_engine_service_.get(); | 215 return mock_ibus_engine_service_.get(); |
| 222 } | 216 } |
| 223 | 217 |
| 224 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( | 218 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( |
| 225 const dbus::ObjectPath& object_path) { | 219 const dbus::ObjectPath& object_path) { |
| 226 } | 220 } |
| 227 | 221 |
| 228 } // namespace chromeos | 222 } // namespace chromeos |
| OLD | NEW |