| Index: chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| diff --git a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| index 9ac78405ad2f5b8083346b689229034c196988d9..d8a478f11fe2bf0a10760cc9ba0989ce3266078a 100644
|
| --- a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| +++ b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| @@ -588,14 +588,14 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
|
| *ethernet_mac_address = std::string();
|
| const NetworkDevice* ether = crosnet->FindEthernetDevice();
|
| if (ether)
|
| - crosnet->GetIPConfigs(ether->device_path(), ethernet_mac_address,
|
| + crosnet->GetIPConfigsAndBlock(ether->device_path(), ethernet_mac_address,
|
| NetworkLibrary::FORMAT_COLON_SEPARATED_HEX);
|
|
|
| *wifi_mac_address = std::string();
|
| const NetworkDevice* wifi = crosnet->wifi_enabled() ?
|
| crosnet->FindWifiDevice() : NULL;
|
| if (wifi)
|
| - crosnet->GetIPConfigs(wifi->device_path(), wifi_mac_address,
|
| + crosnet->GetIPConfigsAndBlock(wifi->device_path(), wifi_mac_address,
|
| NetworkLibrary::FORMAT_COLON_SEPARATED_HEX);
|
| }
|
|
|
|
|