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

Unified Diff: chromeos/dbus/dbus_thread_manager.cc

Issue 2298603002: chromeos: Remove Introspectable D-Bus client library (Closed)
Patch Set: readme Created 4 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/dbus_thread_manager.h ('k') | chromeos/dbus/fake_introspectable_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 f4384f3c17d38d03bec38ad08775b9ce20b39b8b..ecb6af2e86b0b612dd487bd7641e62b53997bd20 100644
--- a/chromeos/dbus/dbus_thread_manager.cc
+++ b/chromeos/dbus/dbus_thread_manager.cc
@@ -20,7 +20,6 @@
#include "chromeos/dbus/easy_unlock_client.h"
#include "chromeos/dbus/gsm_sms_client.h"
#include "chromeos/dbus/image_burner_client.h"
-#include "chromeos/dbus/introspectable_client.h"
#include "chromeos/dbus/lorgnette_manager_client.h"
#include "chromeos/dbus/modem_messaging_client.h"
#include "chromeos/dbus/permission_broker_client.h"
@@ -165,10 +164,6 @@ ImageBurnerClient* DBusThreadManager::GetImageBurnerClient() {
return client_bundle_->image_burner_client();
}
-IntrospectableClient* DBusThreadManager::GetIntrospectableClient() {
- return client_bundle_->introspectable_client();
-}
-
ModemMessagingClient* DBusThreadManager::GetModemMessagingClient() {
return client_bundle_->modem_messaging_client();
}
@@ -206,7 +201,6 @@ void DBusThreadManager::InitializeClients() {
GetEasyUnlockClient()->Init(GetSystemBus());
GetGsmSMSClient()->Init(GetSystemBus());
GetImageBurnerClient()->Init(GetSystemBus());
- GetIntrospectableClient()->Init(GetSystemBus());
GetLorgnetteManagerClient()->Init(GetSystemBus());
GetModemMessagingClient()->Init(GetSystemBus());
GetPermissionBrokerClient()->Init(GetSystemBus());
@@ -417,12 +411,6 @@ void DBusThreadManagerSetter::SetImageBurnerClient(
std::move(client);
}
-void DBusThreadManagerSetter::SetIntrospectableClient(
- std::unique_ptr<IntrospectableClient> client) {
- DBusThreadManager::Get()->client_bundle_->introspectable_client_ =
- std::move(client);
-}
-
void DBusThreadManagerSetter::SetModemMessagingClient(
std::unique_ptr<ModemMessagingClient> client) {
DBusThreadManager::Get()->client_bundle_->modem_messaging_client_ =
« no previous file with comments | « chromeos/dbus/dbus_thread_manager.h ('k') | chromeos/dbus/fake_introspectable_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698