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

Unified Diff: chromeos/dbus/dbus_thread_manager.cc

Issue 1421023002: Remove the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Removing the service instead of renaming it Created 5 years, 1 month 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/dbus_thread_manager.h ('k') | chromeos/dbus/fake_arc_bridge_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/dbus_thread_manager.cc
diff --git a/chromeos/dbus/dbus_thread_manager.cc b/chromeos/dbus/dbus_thread_manager.cc
index af03c1fc4d046b8d72d9c77e694e88f6cb0e72e5..1addc557bb22c8ff89a18a191cf0bbbdf62f535b 100644
--- a/chromeos/dbus/dbus_thread_manager.cc
+++ b/chromeos/dbus/dbus_thread_manager.cc
@@ -10,7 +10,6 @@
#include "chromeos/chromeos_switches.h"
#include "chromeos/dbus/amplifier_client.h"
#include "chromeos/dbus/ap_manager_client.h"
-#include "chromeos/dbus/arc_bridge_client.h"
#include "chromeos/dbus/audio_dsp_client.h"
#include "chromeos/dbus/bluetooth_adapter_client.h"
#include "chromeos/dbus/bluetooth_agent_manager_client.h"
@@ -120,10 +119,6 @@ AmplifierClient* DBusThreadManager::GetAmplifierClient() {
return client_bundle_->amplifier_client();
}
-ArcBridgeClient* DBusThreadManager::GetArcBridgeClient() {
- return client_bundle_->arc_bridge_client();
-}
-
ApManagerClient* DBusThreadManager::GetApManagerClient() {
return client_bundle_->ap_manager_client();
}
@@ -312,7 +307,6 @@ UpdateEngineClient* DBusThreadManager::GetUpdateEngineClient() {
void DBusThreadManager::InitializeClients() {
GetAmplifierClient()->Init(GetSystemBus());
GetApManagerClient()->Init(GetSystemBus());
- GetArcBridgeClient()->Init(GetSystemBus());
GetAudioDspClient()->Init(GetSystemBus());
GetBluetoothAdapterClient()->Init(GetSystemBus());
GetBluetoothAgentManagerClient()->Init(GetSystemBus());
@@ -475,11 +469,6 @@ void DBusThreadManagerSetter::SetAmplifierClient(
DBusThreadManager::Get()->client_bundle_->amplifier_client_ = client.Pass();
}
-void DBusThreadManagerSetter::SetArcBridgeClient(
- scoped_ptr<ArcBridgeClient> client) {
- DBusThreadManager::Get()->client_bundle_->arc_bridge_client_ = client.Pass();
-}
-
void DBusThreadManagerSetter::SetAudioDspClient(
scoped_ptr<AudioDspClient> client) {
DBusThreadManager::Get()->client_bundle_->audio_dsp_client_ = client.Pass();
« no previous file with comments | « chromeos/dbus/dbus_thread_manager.h ('k') | chromeos/dbus/fake_arc_bridge_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698