| Index: chromeos/dbus/shill_manager_client.h
|
| diff --git a/chromeos/dbus/shill_manager_client.h b/chromeos/dbus/shill_manager_client.h
|
| index 352614b6c726cf28dce3032d0a24bbfb9f18b33b..bd05253ed91ba3aa54b34d63f2f38410f321426c 100644
|
| --- a/chromeos/dbus/shill_manager_client.h
|
| +++ b/chromeos/dbus/shill_manager_client.h
|
| @@ -156,14 +156,20 @@ class CHROMEOS_EXPORT ShillManagerClient {
|
| // Verify that the given data corresponds to a trusted device, and return the
|
| // |data| encrypted using the |public_key| for the trusted device. If the
|
| // device is not trusted, return the empty string.
|
| - 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) = 0;
|
| + 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) = 0;
|
| +
|
| + // For each technology present, connect to the "best" service available.
|
| + // Called once the user is logged in and certificates are loaded.
|
| + virtual void ConnectToBestServices(const base::Closure& callback,
|
| + const ErrorCallback& error_callback) = 0;
|
|
|
| // Returns an interface for testing (stub only), or returns NULL.
|
| virtual TestInterface* GetTestInterface() = 0;
|
|
|