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

Unified Diff: chromeos/dbus/dbus_thread_manager.cc

Issue 681723003: Add new shill client for VPN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes nit from Steven Created 6 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_shill_third_party_vpn_driver_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 b86a163bad676abb8e07ba7cc0c819eb5d2c0725..6ab742fda23eb09fb4789d4152794fa117af62f3 100644
--- a/chromeos/dbus/dbus_thread_manager.cc
+++ b/chromeos/dbus/dbus_thread_manager.cc
@@ -45,6 +45,7 @@
#include "chromeos/dbus/shill_manager_client.h"
#include "chromeos/dbus/shill_profile_client.h"
#include "chromeos/dbus/shill_service_client.h"
+#include "chromeos/dbus/shill_third_party_vpn_driver_client.h"
#include "chromeos/dbus/sms_client.h"
#include "chromeos/dbus/system_clock_client.h"
#include "chromeos/dbus/update_engine_client.h"
@@ -212,6 +213,11 @@ DBusThreadManager::GetShillProfileClient() {
return client_bundle_->shill_profile_client();
}
+ShillThirdPartyVpnDriverClient*
+DBusThreadManager::GetShillThirdPartyVpnDriverClient() {
+ return client_bundle_->shill_third_party_vpn_driver_client();
+}
+
GsmSMSClient* DBusThreadManager::GetGsmSMSClient() {
return client_bundle_->gsm_sms_client();
}
@@ -310,6 +316,7 @@ void DBusThreadManager::InitializeClients() {
GetShillManagerClient()->Init(GetSystemBus());
GetShillServiceClient()->Init(GetSystemBus());
GetShillProfileClient()->Init(GetSystemBus());
+ GetShillThirdPartyVpnDriverClient()->Init(GetSystemBus());
GetSMSClient()->Init(GetSystemBus());
GetSystemClockClient()->Init(GetSystemBus());
GetUpdateEngineClient()->Init(GetSystemBus());
« no previous file with comments | « chromeos/dbus/dbus_thread_manager.h ('k') | chromeos/dbus/fake_shill_third_party_vpn_driver_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698