| Index: chrome/browser/geolocation/wifi_data_provider_common_win.cc
|
| ===================================================================
|
| --- chrome/browser/geolocation/wifi_data_provider_common_win.cc (revision 37991)
|
| +++ chrome/browser/geolocation/wifi_data_provider_common_win.cc (working copy)
|
| @@ -14,7 +14,7 @@
|
| AccessPointData *access_point_data) {
|
| // Currently we get only MAC address, signal strength and SSID.
|
| // TODO(steveblock): Work out how to get age, channel and signal-to-noise.
|
| - DCHECK(access_point_data);
|
| + assert(access_point_data);
|
| access_point_data->mac_address = MacAddressAsString16(data.MacAddress);
|
| access_point_data->radio_signal_strength = data.Rssi;
|
| // Note that _NDIS_802_11_SSID::Ssid::Ssid is not null-terminated.
|
|
|