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