Index: chromeos/dbus/shill_manager_client.cc |
diff --git a/chromeos/dbus/shill_manager_client.cc b/chromeos/dbus/shill_manager_client.cc |
index 04d7bcfb447900d05a8c14eda1b30028a39f9df8..6183b0a72c75b0b9d78a5b705771b38636c9c5dc 100644 |
--- a/chromeos/dbus/shill_manager_client.cc |
+++ b/chromeos/dbus/shill_manager_client.cc |
@@ -212,14 +212,15 @@ class ShillManagerClientImpl : public ShillManagerClient { |
error_callback); |
} |
- virtual void VerifyAndEncryptData(const std::string& certificate, |
- const std::string& public_key, |
- const std::string& nonce, |
- const std::string& signed_data, |
- const std::string& device_serial, |
- const std::string& data, |
- const StringCallback& callback, |
- const ErrorCallback& error_callback) OVERRIDE { |
+ virtual void VerifyAndEncryptData( |
+ const std::string& certificate, |
+ const std::string& public_key, |
+ const std::string& nonce, |
+ const std::string& signed_data, |
+ const std::string& device_serial, |
+ const std::string& data, |
+ const StringCallback& callback, |
+ const ErrorCallback& error_callback) OVERRIDE { |
dbus::MethodCall method_call(flimflam::kFlimflamManagerInterface, |
shill::kVerifyAndEncryptDataFunction); |
dbus::MessageWriter writer(&method_call); |
@@ -234,6 +235,16 @@ class ShillManagerClientImpl : public ShillManagerClient { |
error_callback); |
} |
+ virtual void ConnectToBestServices( |
+ const base::Closure& callback, |
+ const ErrorCallback& error_callback) OVERRIDE { |
+ dbus::MethodCall method_call(flimflam::kFlimflamManagerInterface, |
+ "ConnectToBestServices"); |
stevenjb
2013/03/27 21:37:54
Note: this needs to be replaced with the shill con
|
+ helper_.CallVoidMethodWithErrorCallback(&method_call, |
+ callback, |
+ error_callback); |
+ } |
+ |
virtual TestInterface* GetTestInterface() OVERRIDE { |
return NULL; |
} |