| Index: chrome/browser/extensions/api/networking_private/networking_private_process_client.h
|
| diff --git a/chrome/browser/extensions/api/networking_private/networking_private_process_client.h b/chrome/browser/extensions/api/networking_private/networking_private_process_client.h
|
| index 4301225397ec6358556069d94317042de1661326..9a18b3eadc6be5667ddf1d9efd19051413667858 100644
|
| --- a/chrome/browser/extensions/api/networking_private/networking_private_process_client.h
|
| +++ b/chrome/browser/extensions/api/networking_private/networking_private_process_client.h
|
| @@ -87,27 +87,27 @@ class NetworkingPrivateProcessClient
|
|
|
| explicit NetworkingPrivateProcessClient(Profile* profile);
|
|
|
| - // Gets the properties of the network with id |service_path|. See note on
|
| + // Gets the properties of the network with id |network_guid|. See note on
|
| // |callback| and |error_callback|, in class description above.
|
| - void GetProperties(const std::string& service_path,
|
| + void GetProperties(const std::string& network_guid,
|
| const DictionaryResultCallback& callback,
|
| const ErrorCallback& error_callback);
|
|
|
| - // Start connect to the network with id |service_path|. See note on
|
| + // Start connect to the network with id |network_guid|. See note on
|
| // |callback| and |error_callback|, in class description above.
|
| - void StartConnect(const std::string& service_path,
|
| + void StartConnect(const std::string& network_guid,
|
| const VoidResultCallback& callback,
|
| const ErrorCallback& error_callback);
|
|
|
| - // Start disconnect from the network with id |service_path|. See note on
|
| + // Start disconnect from the network with id |network_guid|. See note on
|
| // |callback| and |error_callback|, in class description above.
|
| - void StartDisconnect(const std::string& service_path,
|
| + void StartDisconnect(const std::string& network_guid,
|
| const VoidResultCallback& callback,
|
| const ErrorCallback& error_callback);
|
|
|
| - // Sets the |properties| of the network with id |service_path|. See note on
|
| + // Sets the |properties| of the network with id |network_guid|. See note on
|
| // |callback| and |error_callback|, in class description above.
|
| - void SetProperties(const std::string& service_path,
|
| + void SetProperties(const std::string& network_guid,
|
| const base::DictionaryValue& properties,
|
| const VoidResultCallback& callback,
|
| const ErrorCallback& error_callback);
|
| @@ -115,8 +115,9 @@ class NetworkingPrivateProcessClient
|
| // Requests network scan. Broadcasts NetworkListChangedEvent upon completion.
|
| void RequestNetworkScan();
|
|
|
| - // Gets the list of visible networks and calls |callback|.
|
| - void GetVisibleNetworks(const ListResultCallback& callback);
|
| + // Gets the list of visible networks of |network_type| and calls |callback|.
|
| + void GetVisibleNetworks(const std::string& network_type,
|
| + const ListResultCallback& callback);
|
|
|
| void VerifyDestination(
|
| const api::networking_private::VerificationProperties& properties,
|
|
|