| Index: chrome/browser/geolocation/network_location_request.cc
|
| diff --git a/chrome/browser/geolocation/network_location_request.cc b/chrome/browser/geolocation/network_location_request.cc
|
| index cc56cafa85e75055b288b9a0ff5d70817a173c05..5edade1ad1e01f8483281cb75ec41403a150b0f8 100644
|
| --- a/chrome/browser/geolocation/network_location_request.cc
|
| +++ b/chrome/browser/geolocation/network_location_request.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -116,12 +116,13 @@ bool NetworkLocationRequest::MakeRequest(const std::string& host_name,
|
| return true;
|
| }
|
|
|
| -void NetworkLocationRequest::OnURLFetchComplete(const URLFetcher* source,
|
| - const GURL& url,
|
| - const URLRequestStatus& status,
|
| - int response_code,
|
| - const ResponseCookies& cookies,
|
| - const std::string& data) {
|
| +void NetworkLocationRequest::OnURLFetchComplete(
|
| + const URLFetcher* source,
|
| + const GURL& url,
|
| + const net::URLRequestStatus& status,
|
| + int response_code,
|
| + const ResponseCookies& cookies,
|
| + const std::string& data) {
|
| DCHECK_EQ(url_fetcher_.get(), source);
|
| DCHECK(url_.possibly_invalid_spec() == url.possibly_invalid_spec());
|
|
|
|
|