Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Unified Diff: chromeos/dbus/mixed_dbus_thread_manager.cc

Issue 472953002: Merged MixedDBusThreadManager functionality into DBusClientBundle. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/dbus/mixed_dbus_thread_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/mixed_dbus_thread_manager.cc
diff --git a/chromeos/dbus/mixed_dbus_thread_manager.cc b/chromeos/dbus/mixed_dbus_thread_manager.cc
deleted file mode 100644
index 3ca5d0999c28947ac106b1bca9c31eaa72bb4a6e..0000000000000000000000000000000000000000
--- a/chromeos/dbus/mixed_dbus_thread_manager.cc
+++ /dev/null
@@ -1,205 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chromeos/dbus/mixed_dbus_thread_manager.h"
-
-namespace chromeos {
-
-MixedDBusThreadManager::MixedDBusThreadManager(
- DBusThreadManager* real_thread_manager,
- DBusThreadManager* fake_thread_manager)
- : real_thread_manager_(real_thread_manager),
- fake_thread_manager_(fake_thread_manager) {
-}
-
-MixedDBusThreadManager::~MixedDBusThreadManager() {
-}
-
-// DBusThreadManager overrides.
- dbus::Bus* MixedDBusThreadManager::GetSystemBus() {
- return real_thread_manager_->GetSystemBus();
-}
-
- BluetoothAdapterClient* MixedDBusThreadManager::GetBluetoothAdapterClient() {
- return GetThreadManager(
- DBusClientBundle::BLUETOOTH)->GetBluetoothAdapterClient();
-}
-
- BluetoothAgentManagerClient*
- MixedDBusThreadManager::GetBluetoothAgentManagerClient() {
- return GetThreadManager(
- DBusClientBundle::BLUETOOTH)->GetBluetoothAgentManagerClient();
-}
-
- BluetoothDeviceClient* MixedDBusThreadManager::GetBluetoothDeviceClient() {
- return GetThreadManager(
- DBusClientBundle::BLUETOOTH)->GetBluetoothDeviceClient();
-}
-
- BluetoothGattCharacteristicClient*
- MixedDBusThreadManager::GetBluetoothGattCharacteristicClient() {
- return GetThreadManager(DBusClientBundle::BLUETOOTH)->
- GetBluetoothGattCharacteristicClient();
-}
-
- BluetoothGattDescriptorClient*
- MixedDBusThreadManager::GetBluetoothGattDescriptorClient() {
- return GetThreadManager(DBusClientBundle::BLUETOOTH)->
- GetBluetoothGattDescriptorClient();
-}
-
- BluetoothGattManagerClient*
- MixedDBusThreadManager::GetBluetoothGattManagerClient() {
- return GetThreadManager(
- DBusClientBundle::BLUETOOTH)->GetBluetoothGattManagerClient();
-}
-
- BluetoothGattServiceClient*
- MixedDBusThreadManager::GetBluetoothGattServiceClient() {
- return GetThreadManager(
- DBusClientBundle::BLUETOOTH)->GetBluetoothGattServiceClient();
-}
-
- BluetoothInputClient* MixedDBusThreadManager::GetBluetoothInputClient() {
- return GetThreadManager(
- DBusClientBundle::BLUETOOTH)->GetBluetoothInputClient();
-}
-
- BluetoothProfileManagerClient*
- MixedDBusThreadManager::GetBluetoothProfileManagerClient() {
- return GetThreadManager(
- DBusClientBundle::BLUETOOTH)->GetBluetoothProfileManagerClient();
-}
-
- CrasAudioClient* MixedDBusThreadManager::GetCrasAudioClient() {
- return GetThreadManager(
- DBusClientBundle::CRAS)->GetCrasAudioClient();
-}
-
- CrosDisksClient* MixedDBusThreadManager::GetCrosDisksClient() {
- return GetThreadManager(DBusClientBundle::CROS_DISKS)->GetCrosDisksClient();
-}
-
- CryptohomeClient* MixedDBusThreadManager::GetCryptohomeClient() {
- return GetThreadManager(
- DBusClientBundle::CRYPTOHOME)->GetCryptohomeClient();
-}
-
- DebugDaemonClient* MixedDBusThreadManager::GetDebugDaemonClient() {
- return GetThreadManager(
- DBusClientBundle::DEBUG_DAEMON)->GetDebugDaemonClient();
-}
-
- EasyUnlockClient* MixedDBusThreadManager::GetEasyUnlockClient() {
- return GetThreadManager(
- DBusClientBundle::EASY_UNLOCK)->GetEasyUnlockClient();
-}
-
- LorgnetteManagerClient* MixedDBusThreadManager::GetLorgnetteManagerClient() {
- return GetThreadManager(
- DBusClientBundle::LORGNETTE_MANAGER)->GetLorgnetteManagerClient();
-}
-
- ShillDeviceClient* MixedDBusThreadManager::GetShillDeviceClient() {
- return GetThreadManager(DBusClientBundle::SHILL)->GetShillDeviceClient();
-}
-
-ShillIPConfigClient* MixedDBusThreadManager::GetShillIPConfigClient() {
- return GetThreadManager(DBusClientBundle::SHILL)->GetShillIPConfigClient();
-}
-
-ShillManagerClient* MixedDBusThreadManager::GetShillManagerClient() {
- return GetThreadManager(DBusClientBundle::SHILL)->GetShillManagerClient();
-}
-
-ShillProfileClient* MixedDBusThreadManager::GetShillProfileClient() {
- return GetThreadManager(DBusClientBundle::SHILL)->GetShillProfileClient();
-}
-
-ShillServiceClient* MixedDBusThreadManager::GetShillServiceClient() {
- return GetThreadManager(DBusClientBundle::SHILL)->GetShillServiceClient();
-}
-
-GsmSMSClient* MixedDBusThreadManager::GetGsmSMSClient() {
- return GetThreadManager(DBusClientBundle::GSM_SMS)->GetGsmSMSClient();
-}
-
-ImageBurnerClient* MixedDBusThreadManager::GetImageBurnerClient() {
- return GetThreadManager(
- DBusClientBundle::IMAGE_BURNER)->GetImageBurnerClient();
-}
-
-IntrospectableClient* MixedDBusThreadManager::GetIntrospectableClient() {
- return GetThreadManager(
- DBusClientBundle::INTROSPECTABLE)->GetIntrospectableClient();
-}
-
-ModemMessagingClient* MixedDBusThreadManager::GetModemMessagingClient() {
- return GetThreadManager(
- DBusClientBundle::MODEM_MESSAGING)->GetModemMessagingClient();
-}
-
-NfcAdapterClient* MixedDBusThreadManager::GetNfcAdapterClient() {
- return GetThreadManager(DBusClientBundle::NFC)->GetNfcAdapterClient();
-}
-
-NfcDeviceClient* MixedDBusThreadManager::GetNfcDeviceClient() {
- return GetThreadManager(DBusClientBundle::NFC)->GetNfcDeviceClient();
-}
-
-NfcManagerClient* MixedDBusThreadManager::GetNfcManagerClient() {
- return GetThreadManager(DBusClientBundle::NFC)->GetNfcManagerClient();
-}
-
-NfcRecordClient* MixedDBusThreadManager::GetNfcRecordClient() {
- return GetThreadManager(DBusClientBundle::NFC)->GetNfcRecordClient();
-}
-
-NfcTagClient* MixedDBusThreadManager::GetNfcTagClient() {
- return GetThreadManager(DBusClientBundle::NFC)->GetNfcTagClient();
-}
-
-PermissionBrokerClient* MixedDBusThreadManager::GetPermissionBrokerClient() {
- return GetThreadManager(
- DBusClientBundle::PERMISSION_BROKER)->GetPermissionBrokerClient();
-}
-
-PowerManagerClient* MixedDBusThreadManager::GetPowerManagerClient() {
- return GetThreadManager(
- DBusClientBundle::POWER_MANAGER)->GetPowerManagerClient();
-}
-
-PowerPolicyController* MixedDBusThreadManager::GetPowerPolicyController() {
- return GetThreadManager(
- DBusClientBundle::POWER_MANAGER)->GetPowerPolicyController();
-}
-
-SessionManagerClient* MixedDBusThreadManager::GetSessionManagerClient() {
- return GetThreadManager(
- DBusClientBundle::SESSION_MANAGER)->GetSessionManagerClient();
-}
-
-SMSClient* MixedDBusThreadManager::GetSMSClient() {
- return GetThreadManager(DBusClientBundle::SMS)->GetSMSClient();
-}
-
-SystemClockClient* MixedDBusThreadManager::GetSystemClockClient() {
- return GetThreadManager(
- DBusClientBundle::SYSTEM_CLOCK)->GetSystemClockClient();
-}
-
-UpdateEngineClient* MixedDBusThreadManager::GetUpdateEngineClient() {
- return GetThreadManager(
- DBusClientBundle::UPDATE_ENGINE)->GetUpdateEngineClient();
-}
-
-DBusThreadManager* MixedDBusThreadManager::GetThreadManager(
- DBusClientBundle::DBusClientType client) {
- if (DBusThreadManager::IsUsingStub(client))
- return fake_thread_manager_.get();
-
- return real_thread_manager_.get();
-}
-
-} // namespace chromeos
« no previous file with comments | « chromeos/dbus/mixed_dbus_thread_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698