| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 MockDBusThreadManagerWithoutGMock::GetSessionManagerClient() { | 170 MockDBusThreadManagerWithoutGMock::GetSessionManagerClient() { |
| 171 NOTIMPLEMENTED(); | 171 NOTIMPLEMENTED(); |
| 172 return NULL; | 172 return NULL; |
| 173 } | 173 } |
| 174 | 174 |
| 175 SMSClient* MockDBusThreadManagerWithoutGMock::GetSMSClient() { | 175 SMSClient* MockDBusThreadManagerWithoutGMock::GetSMSClient() { |
| 176 NOTIMPLEMENTED(); | 176 NOTIMPLEMENTED(); |
| 177 return NULL; | 177 return NULL; |
| 178 } | 178 } |
| 179 | 179 |
| 180 SystemClockClient* MockDBusThreadManagerWithoutGMock::GetSystemClockClient() { |
| 181 NOTIMPLEMENTED(); |
| 182 return NULL; |
| 183 } |
| 184 |
| 180 UpdateEngineClient* MockDBusThreadManagerWithoutGMock::GetUpdateEngineClient() { | 185 UpdateEngineClient* MockDBusThreadManagerWithoutGMock::GetUpdateEngineClient() { |
| 181 NOTIMPLEMENTED(); | 186 NOTIMPLEMENTED(); |
| 182 return NULL; | 187 return NULL; |
| 183 } | 188 } |
| 184 | 189 |
| 185 BluetoothOutOfBandClient* | 190 BluetoothOutOfBandClient* |
| 186 MockDBusThreadManagerWithoutGMock::GetBluetoothOutOfBandClient() { | 191 MockDBusThreadManagerWithoutGMock::GetBluetoothOutOfBandClient() { |
| 187 NOTIMPLEMENTED(); | 192 NOTIMPLEMENTED(); |
| 188 return NULL; | 193 return NULL; |
| 189 } | 194 } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 213 | 218 |
| 214 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( | 219 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( |
| 215 const dbus::ObjectPath& object_path) { | 220 const dbus::ObjectPath& object_path) { |
| 216 } | 221 } |
| 217 | 222 |
| 218 IBusPanelService* MockDBusThreadManagerWithoutGMock::GetIBusPanelService() { | 223 IBusPanelService* MockDBusThreadManagerWithoutGMock::GetIBusPanelService() { |
| 219 return mock_ibus_panel_service_.get(); | 224 return mock_ibus_panel_service_.get(); |
| 220 } | 225 } |
| 221 | 226 |
| 222 } // namespace chromeos | 227 } // namespace chromeos |
| OLD | NEW |