| 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" |
| 11 #include "chromeos/dbus/bluetooth_adapter_client.h" | 11 #include "chromeos/dbus/bluetooth_adapter_client.h" |
| 12 #include "chromeos/dbus/bluetooth_agent_manager_client.h" | 12 #include "chromeos/dbus/bluetooth_agent_manager_client.h" |
| 13 #include "chromeos/dbus/bluetooth_device_client.h" | 13 #include "chromeos/dbus/bluetooth_device_client.h" |
| 14 #include "chromeos/dbus/bluetooth_gatt_characteristic_client.h" | 14 #include "chromeos/dbus/bluetooth_gatt_characteristic_client.h" |
| 15 #include "chromeos/dbus/bluetooth_gatt_descriptor_client.h" | 15 #include "chromeos/dbus/bluetooth_gatt_descriptor_client.h" |
| 16 #include "chromeos/dbus/bluetooth_gatt_manager_client.h" | 16 #include "chromeos/dbus/bluetooth_gatt_manager_client.h" |
| 17 #include "chromeos/dbus/bluetooth_gatt_service_client.h" | 17 #include "chromeos/dbus/bluetooth_gatt_service_client.h" |
| 18 #include "chromeos/dbus/bluetooth_input_client.h" | 18 #include "chromeos/dbus/bluetooth_input_client.h" |
| 19 #include "chromeos/dbus/bluetooth_media_client.h" | 19 #include "chromeos/dbus/bluetooth_media_client.h" |
| 20 #include "chromeos/dbus/bluetooth_media_transport_client.h" | 20 #include "chromeos/dbus/bluetooth_media_transport_client.h" |
| 21 #include "chromeos/dbus/bluetooth_profile_manager_client.h" | 21 #include "chromeos/dbus/bluetooth_profile_manager_client.h" |
| 22 #include "chromeos/dbus/cras_audio_client.h" | 22 #include "chromeos/dbus/cras_audio_client.h" |
| 23 #include "chromeos/dbus/cros_disks_client.h" | 23 #include "chromeos/dbus/cros_disks_client.h" |
| 24 #include "chromeos/dbus/cryptohome_client.h" | 24 #include "chromeos/dbus/cryptohome_client.h" |
| 25 #include "chromeos/dbus/dbus_client.h" | 25 #include "chromeos/dbus/dbus_client.h" |
| 26 #include "chromeos/dbus/dbus_client_bundle.h" | |
| 27 #include "chromeos/dbus/debug_daemon_client.h" | 26 #include "chromeos/dbus/debug_daemon_client.h" |
| 28 #include "chromeos/dbus/easy_unlock_client.h" | 27 #include "chromeos/dbus/easy_unlock_client.h" |
| 29 #include "chromeos/dbus/gsm_sms_client.h" | 28 #include "chromeos/dbus/gsm_sms_client.h" |
| 30 #include "chromeos/dbus/image_burner_client.h" | 29 #include "chromeos/dbus/image_burner_client.h" |
| 31 #include "chromeos/dbus/introspectable_client.h" | 30 #include "chromeos/dbus/introspectable_client.h" |
| 32 #include "chromeos/dbus/leadership_daemon_manager_client.h" | 31 #include "chromeos/dbus/leadership_daemon_manager_client.h" |
| 33 #include "chromeos/dbus/lorgnette_manager_client.h" | 32 #include "chromeos/dbus/lorgnette_manager_client.h" |
| 34 #include "chromeos/dbus/modem_messaging_client.h" | 33 #include "chromeos/dbus/modem_messaging_client.h" |
| 35 #include "chromeos/dbus/nfc_adapter_client.h" | 34 #include "chromeos/dbus/nfc_adapter_client.h" |
| 36 #include "chromeos/dbus/nfc_device_client.h" | 35 #include "chromeos/dbus/nfc_device_client.h" |
| (...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 client.Pass(); | 658 client.Pass(); |
| 660 } | 659 } |
| 661 | 660 |
| 662 void DBusThreadManagerSetter::SetUpdateEngineClient( | 661 void DBusThreadManagerSetter::SetUpdateEngineClient( |
| 663 scoped_ptr<UpdateEngineClient> client) { | 662 scoped_ptr<UpdateEngineClient> client) { |
| 664 DBusThreadManager::Get()->client_bundle_->update_engine_client_ = | 663 DBusThreadManager::Get()->client_bundle_->update_engine_client_ = |
| 665 client.Pass(); | 664 client.Pass(); |
| 666 } | 665 } |
| 667 | 666 |
| 668 } // namespace chromeos | 667 } // namespace chromeos |
| OLD | NEW |