| 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_; | 
|  |