| 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 f78c66cb2730d9ea177a370974a1feee7e929027..6098d3a73062abf36835810d1c08a955d7413024 100644
|
| --- a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| +++ b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc
|
| @@ -527,11 +527,10 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate,
|
| for (size_t i = 0; i < devices.size(); ++i) {
|
| device::BluetoothDevice* device = devices[i];
|
| ash::BluetoothDeviceInfo info;
|
| - info.address = device->address();
|
| + info.address = device->GetAddress();
|
| info.display_name = device->GetName();
|
| info.connected = device->IsConnected();
|
| info.paired = device->IsPaired();
|
| - info.visible = device->IsVisible();
|
| list->push_back(info);
|
| }
|
| }
|
|
|