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_config_client.h" | 9 #include "chromeos/dbus/ibus/mock_ibus_config_client.h" |
10 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" | 10 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 CryptohomeClient* MockDBusThreadManagerWithoutGMock::GetCryptohomeClient() { | 90 CryptohomeClient* MockDBusThreadManagerWithoutGMock::GetCryptohomeClient() { |
91 NOTIMPLEMENTED(); | 91 NOTIMPLEMENTED(); |
92 return NULL; | 92 return NULL; |
93 } | 93 } |
94 | 94 |
95 DebugDaemonClient* MockDBusThreadManagerWithoutGMock::GetDebugDaemonClient() { | 95 DebugDaemonClient* MockDBusThreadManagerWithoutGMock::GetDebugDaemonClient() { |
96 NOTIMPLEMENTED(); | 96 NOTIMPLEMENTED(); |
97 return NULL; | 97 return NULL; |
98 } | 98 } |
99 | 99 |
| 100 ExperimentalBluetoothAdapterClient* |
| 101 MockDBusThreadManagerWithoutGMock::GetExperimentalBluetoothAdapterClient() { |
| 102 NOTIMPLEMENTED(); |
| 103 return NULL; |
| 104 } |
| 105 |
| 106 ExperimentalBluetoothAgentManagerClient* |
| 107 MockDBusThreadManagerWithoutGMock:: |
| 108 GetExperimentalBluetoothAgentManagerClient() { |
| 109 NOTIMPLEMENTED(); |
| 110 return NULL; |
| 111 } |
| 112 |
| 113 ExperimentalBluetoothDeviceClient* |
| 114 MockDBusThreadManagerWithoutGMock::GetExperimentalBluetoothDeviceClient() { |
| 115 NOTIMPLEMENTED(); |
| 116 return NULL; |
| 117 } |
| 118 |
| 119 ExperimentalBluetoothProfileManagerClient* |
| 120 MockDBusThreadManagerWithoutGMock:: |
| 121 GetExperimentalBluetoothProfileManagerClient() { |
| 122 NOTIMPLEMENTED(); |
| 123 return NULL; |
| 124 } |
| 125 |
100 ShillDeviceClient* | 126 ShillDeviceClient* |
101 MockDBusThreadManagerWithoutGMock::GetShillDeviceClient() { | 127 MockDBusThreadManagerWithoutGMock::GetShillDeviceClient() { |
102 NOTIMPLEMENTED(); | 128 NOTIMPLEMENTED(); |
103 return NULL; | 129 return NULL; |
104 } | 130 } |
105 | 131 |
106 ShillIPConfigClient* | 132 ShillIPConfigClient* |
107 MockDBusThreadManagerWithoutGMock::GetShillIPConfigClient() { | 133 MockDBusThreadManagerWithoutGMock::GetShillIPConfigClient() { |
108 NOTIMPLEMENTED(); | 134 NOTIMPLEMENTED(); |
109 return NULL; | 135 return NULL; |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 | 244 |
219 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( | 245 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( |
220 const dbus::ObjectPath& object_path) { | 246 const dbus::ObjectPath& object_path) { |
221 } | 247 } |
222 | 248 |
223 IBusPanelService* MockDBusThreadManagerWithoutGMock::GetIBusPanelService() { | 249 IBusPanelService* MockDBusThreadManagerWithoutGMock::GetIBusPanelService() { |
224 return mock_ibus_panel_service_.get(); | 250 return mock_ibus_panel_service_.get(); |
225 } | 251 } |
226 | 252 |
227 } // namespace chromeos | 253 } // namespace chromeos |
OLD | NEW |