| Index: chrome/browser/chromeos/options/network_config_view.h
|
| diff --git a/chrome/browser/chromeos/options/network_config_view.h b/chrome/browser/chromeos/options/network_config_view.h
|
| index 9d83221efb108bb6a035c6c8afd94787c7abc217..3df14324b9579293e61002a5d5236c00d6f92528 100644
|
| --- a/chrome/browser/chromeos/options/network_config_view.h
|
| +++ b/chrome/browser/chromeos/options/network_config_view.h
|
| @@ -46,6 +46,11 @@ class NetworkConfigView : public views::DialogDelegateView,
|
|
|
| // Shows a network connection dialog if none is currently visible.
|
| static void Show(const std::string& service_path, gfx::NativeWindow parent);
|
| +
|
| + // Same as above but takes a network id (GUID) instead.
|
| + static void ShowByNetworkId(const std::string& network_id,
|
| + gfx::NativeWindow parent);
|
| +
|
| // Shows a dialog to configure a new network. |type| must be a valid Shill
|
| // 'Type' property value.
|
| static void ShowForType(const std::string& type, gfx::NativeWindow parent);
|
| @@ -86,6 +91,9 @@ class NetworkConfigView : public views::DialogDelegateView,
|
| NetworkConfigView();
|
| ~NetworkConfigView() override;
|
|
|
| + static void ShowByNetwork(const NetworkState* network,
|
| + gfx::NativeWindow parent);
|
| +
|
| // Login dialog for known networks. Returns true if successfully created.
|
| bool InitWithNetworkState(const NetworkState* network);
|
| // Login dialog for new/hidden networks. Returns true if successfully created.
|
|
|