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

Unified Diff: chromeos/dbus/dbus_client_bundle.h

Issue 681723003: Add new shill client for VPN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated the interface to better suit the upper layer 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
Index: chromeos/dbus/dbus_client_bundle.h
diff --git a/chromeos/dbus/dbus_client_bundle.h b/chromeos/dbus/dbus_client_bundle.h
index 8be99983acba4b912ab385446302d1dbc3c54bbf..c6404ee356f44f4b8c510faaff9cd858656035db 100644
--- a/chromeos/dbus/dbus_client_bundle.h
+++ b/chromeos/dbus/dbus_client_bundle.h
@@ -30,6 +30,7 @@ class ShillIPConfigClient;
class ShillManagerClient;
class ShillServiceClient;
class ShillProfileClient;
+class ShillThirdPartyVpnDriverClient;
class GsmSMSClient;
class ImageBurnerClient;
class IntrospectableClient;
@@ -174,6 +175,10 @@ class CHROMEOS_EXPORT DBusClientBundle {
return shill_profile_client_.get();
}
+ ShillThirdPartyVpnDriverClient* shill_third_party_vpn_driver_client() {
+ return shill_third_party_vpn_driver_client_.get();
+ }
+
GsmSMSClient* gsm_sms_client() {
return gsm_sms_client_.get();
}
@@ -262,6 +267,8 @@ class CHROMEOS_EXPORT DBusClientBundle {
scoped_ptr<ShillManagerClient> shill_manager_client_;
scoped_ptr<ShillServiceClient> shill_service_client_;
scoped_ptr<ShillProfileClient> shill_profile_client_;
+ scoped_ptr<ShillThirdPartyVpnDriverClient>
+ shill_third_party_vpn_driver_client_;
scoped_ptr<GsmSMSClient> gsm_sms_client_;
scoped_ptr<ImageBurnerClient> image_burner_client_;
scoped_ptr<IntrospectableClient> introspectable_client_;

Powered by Google App Engine
This is Rietveld 408576698