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

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: 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/chromeos.gyp ('k') | chromeos/dbus/dbus_client_bundle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/dbus_client_bundle.h
diff --git a/chromeos/dbus/dbus_client_bundle.h b/chromeos/dbus/dbus_client_bundle.h
index 9a5a65677773e643763445c0ad96041f7a8d0e7f..324a8d63b436e02353035b29b3a607233b432f44 100644
--- a/chromeos/dbus/dbus_client_bundle.h
+++ b/chromeos/dbus/dbus_client_bundle.h
@@ -31,6 +31,7 @@ class ShillIPConfigClient;
class ShillManagerClient;
class ShillServiceClient;
class ShillProfileClient;
+class ShillThirdPartyVpnDriverClient;
class GsmSMSClient;
class ImageBurnerClient;
class IntrospectableClient;
@@ -181,6 +182,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();
}
@@ -275,6 +280,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_;
« no previous file with comments | « chromeos/chromeos.gyp ('k') | chromeos/dbus/dbus_client_bundle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698