| Index: chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
|
| index 098bbb1d58a839f21599ae0889427b88fe69bc87..c31aaf6801f0288c2f6134585b9e3bff5cd314fe 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
|
| @@ -1524,8 +1524,11 @@ void InternetOptionsHandler::PopulateDictionaryDetailsCallback(
|
| // Device hardware address
|
| const DeviceState* device = NetworkHandler::Get()->network_state_handler()->
|
| GetDeviceState(network->device_path());
|
| - if (device)
|
| - dictionary.SetString(kTagHardwareAddress, device->GetFormattedMacAddress());
|
| + if (device) {
|
| + dictionary.SetString(
|
| + kTagHardwareAddress,
|
| + network_util::FormattedMacAddress(device->mac_address()));
|
| + }
|
|
|
| // IP config
|
| scoped_ptr<base::DictionaryValue> ipconfig_dhcp(new base::DictionaryValue);
|
|
|