| Index: chrome/browser/autofill/autofill_download.cc
|
| diff --git a/chrome/browser/autofill/autofill_download.cc b/chrome/browser/autofill/autofill_download.cc
|
| index 63897806eeda46f948d10d7e9601cad3464f3f77..63ea0722ac12e7a1654beedf5c269b5285434064 100644
|
| --- a/chrome/browser/autofill/autofill_download.cc
|
| +++ b/chrome/browser/autofill/autofill_download.cc
|
| @@ -239,9 +239,9 @@ std::string AutofillDownloadManager::GetCombinedSignature(
|
| }
|
|
|
| void AutofillDownloadManager::OnURLFetchComplete(
|
| - const content::URLFetcher* source) {
|
| - std::map<content::URLFetcher *, FormRequestData>::iterator it =
|
| - url_fetchers_.find(const_cast<content::URLFetcher*>(source));
|
| + const net::URLFetcher* source) {
|
| + std::map<net::URLFetcher *, FormRequestData>::iterator it =
|
| + url_fetchers_.find(const_cast<net::URLFetcher*>(source));
|
| if (it == url_fetchers_.end()) {
|
| // Looks like crash on Mac is possibly caused with callback entering here
|
| // with unknown fetcher when network is refreshed.
|
|
|