| Index: chrome/browser/ui/ash/system_tray_client.cc
|
| diff --git a/chrome/browser/ui/ash/system_tray_client.cc b/chrome/browser/ui/ash/system_tray_client.cc
|
| index 2b96e3e91aa219d5c8be437a6fe4ca0365e3c32a..d848ee93b63ef81555f2f64f65e4e0d2dd36bd2e 100644
|
| --- a/chrome/browser/ui/ash/system_tray_client.cc
|
| +++ b/chrome/browser/ui/ash/system_tray_client.cc
|
| @@ -239,8 +239,8 @@ void SystemTrayClient::ShowNetworkConfigure(const std::string& network_id) {
|
| }
|
|
|
| // Dialog will default to the primary display.
|
| - chromeos::NetworkConfigView::ShowInContainer(network_id,
|
| - GetDialogParentContainerId());
|
| + chromeos::NetworkConfigView::ShowForNetworkId(network_id,
|
| + nullptr /* parent */);
|
| }
|
|
|
| void SystemTrayClient::ShowNetworkCreate(const std::string& type) {
|
| @@ -249,7 +249,7 @@ void SystemTrayClient::ShowNetworkCreate(const std::string& type) {
|
| chromeos::ChooseMobileNetworkDialog::ShowDialogInContainer(container_id);
|
| return;
|
| }
|
| - chromeos::NetworkConfigView::ShowForTypeInContainer(type, container_id);
|
| + chromeos::NetworkConfigView::ShowForType(type, nullptr /* parent */);
|
| }
|
|
|
| void SystemTrayClient::ShowNetworkSettings(const std::string& network_id) {
|
|
|