| Index: content/browser/geolocation/network_location_request.cc
|
| diff --git a/content/browser/geolocation/network_location_request.cc b/content/browser/geolocation/network_location_request.cc
|
| index 300df7b485001d19698460f4bd7729e29e0447c4..9a92923d3cade60c36bc2d024ba6761935f6e271 100644
|
| --- a/content/browser/geolocation/network_location_request.cc
|
| +++ b/content/browser/geolocation/network_location_request.cc
|
| @@ -74,14 +74,12 @@ NetworkLocationRequest::~NetworkLocationRequest() {
|
| }
|
|
|
| bool NetworkLocationRequest::MakeRequest(const string16& access_token,
|
| - const RadioData& radio_data,
|
| const WifiData& wifi_data,
|
| const base::Time& timestamp) {
|
| if (url_fetcher_ != NULL) {
|
| DVLOG(1) << "NetworkLocationRequest : Cancelling pending request";
|
| url_fetcher_.reset();
|
| }
|
| - radio_data_ = radio_data;
|
| wifi_data_ = wifi_data;
|
| timestamp_ = timestamp;
|
|
|
| @@ -124,7 +122,7 @@ void NetworkLocationRequest::OnURLFetchComplete(
|
| DCHECK(listener_);
|
| DVLOG(1) << "NetworkLocationRequest::Run() : Calling listener with position.";
|
| listener_->LocationResponseAvailable(position, server_error, access_token,
|
| - radio_data_, wifi_data_);
|
| + wifi_data_);
|
| }
|
|
|
| // Local functions.
|
|
|