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/dbus_thread_manager.h" | 5 #include "chromeos/dbus/dbus_thread_manager.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/sys_info.h" | 8 #include "base/sys_info.h" |
9 #include "base/threading/thread.h" | 9 #include "base/threading/thread.h" |
10 #include "chromeos/chromeos_switches.h" | 10 #include "chromeos/chromeos_switches.h" |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 GetCrosDisksClient()->Init(GetSystemBus()); | 304 GetCrosDisksClient()->Init(GetSystemBus()); |
305 GetCryptohomeClient()->Init(GetSystemBus()); | 305 GetCryptohomeClient()->Init(GetSystemBus()); |
306 GetDebugDaemonClient()->Init(GetSystemBus()); | 306 GetDebugDaemonClient()->Init(GetSystemBus()); |
307 GetEasyUnlockClient()->Init(GetSystemBus()); | 307 GetEasyUnlockClient()->Init(GetSystemBus()); |
308 GetGsmSMSClient()->Init(GetSystemBus()); | 308 GetGsmSMSClient()->Init(GetSystemBus()); |
309 GetImageBurnerClient()->Init(GetSystemBus()); | 309 GetImageBurnerClient()->Init(GetSystemBus()); |
310 GetIntrospectableClient()->Init(GetSystemBus()); | 310 GetIntrospectableClient()->Init(GetSystemBus()); |
311 GetLorgnetteManagerClient()->Init(GetSystemBus()); | 311 GetLorgnetteManagerClient()->Init(GetSystemBus()); |
312 GetModemMessagingClient()->Init(GetSystemBus()); | 312 GetModemMessagingClient()->Init(GetSystemBus()); |
313 GetPermissionBrokerClient()->Init(GetSystemBus()); | 313 GetPermissionBrokerClient()->Init(GetSystemBus()); |
| 314 GetPeerDaemonManagerClient()->Init(GetSystemBus()); |
314 GetPowerManagerClient()->Init(GetSystemBus()); | 315 GetPowerManagerClient()->Init(GetSystemBus()); |
315 GetPrivetDaemonClient()->Init(GetSystemBus()); | 316 GetPrivetDaemonClient()->Init(GetSystemBus()); |
316 GetSessionManagerClient()->Init(GetSystemBus()); | 317 GetSessionManagerClient()->Init(GetSystemBus()); |
317 GetShillDeviceClient()->Init(GetSystemBus()); | 318 GetShillDeviceClient()->Init(GetSystemBus()); |
318 GetShillIPConfigClient()->Init(GetSystemBus()); | 319 GetShillIPConfigClient()->Init(GetSystemBus()); |
319 GetShillManagerClient()->Init(GetSystemBus()); | 320 GetShillManagerClient()->Init(GetSystemBus()); |
320 GetShillServiceClient()->Init(GetSystemBus()); | 321 GetShillServiceClient()->Init(GetSystemBus()); |
321 GetShillProfileClient()->Init(GetSystemBus()); | 322 GetShillProfileClient()->Init(GetSystemBus()); |
322 GetShillThirdPartyVpnDriverClient()->Init(GetSystemBus()); | 323 GetShillThirdPartyVpnDriverClient()->Init(GetSystemBus()); |
323 GetSMSClient()->Init(GetSystemBus()); | 324 GetSMSClient()->Init(GetSystemBus()); |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 client.Pass(); | 660 client.Pass(); |
660 } | 661 } |
661 | 662 |
662 void DBusThreadManagerSetter::SetUpdateEngineClient( | 663 void DBusThreadManagerSetter::SetUpdateEngineClient( |
663 scoped_ptr<UpdateEngineClient> client) { | 664 scoped_ptr<UpdateEngineClient> client) { |
664 DBusThreadManager::Get()->client_bundle_->update_engine_client_ = | 665 DBusThreadManager::Get()->client_bundle_->update_engine_client_ = |
665 client.Pass(); | 666 client.Pass(); |
666 } | 667 } |
667 | 668 |
668 } // namespace chromeos | 669 } // namespace chromeos |
OLD | NEW |