| Index: chrome/common/net/url_fetcher.cc
|
| diff --git a/chrome/common/net/url_fetcher.cc b/chrome/common/net/url_fetcher.cc
|
| index 4f267af3388475e763b2fed2679b619aa6444165..53487b712215e56ff585fef3947a97382261e39f 100644
|
| --- a/chrome/common/net/url_fetcher.cc
|
| +++ b/chrome/common/net/url_fetcher.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.
|
|
|
| @@ -91,7 +91,7 @@ class URLFetcher::Core
|
| void StartURLRequest();
|
| void StartURLRequestWhenAppropriate();
|
| void CancelURLRequest();
|
| - void OnCompletedURLRequest(const URLRequestStatus& status);
|
| + void OnCompletedURLRequest(const net::URLRequestStatus& status);
|
| void NotifyMalformedContent();
|
|
|
| // Deletes the request, removes it from the registry, and removes the
|
| @@ -408,7 +408,8 @@ void URLFetcher::Core::CancelURLRequest() {
|
| was_cancelled_ = true;
|
| }
|
|
|
| -void URLFetcher::Core::OnCompletedURLRequest(const URLRequestStatus& status) {
|
| +void URLFetcher::Core::OnCompletedURLRequest(
|
| + const net::URLRequestStatus& status) {
|
| DCHECK(delegate_loop_proxy_->BelongsToCurrentThread());
|
|
|
| // Checks the response from server.
|
|
|