Index: chrome/browser/safe_browsing/malware_details_cache.cc |
=================================================================== |
--- chrome/browser/safe_browsing/malware_details_cache.cc (revision 107626) |
+++ chrome/browser/safe_browsing/malware_details_cache.cc (working copy) |
@@ -108,14 +108,14 @@ |
if (source->GetStatus().status() != net::URLRequestStatus::SUCCESS && |
source->GetStatus().error() == net::ERR_CACHE_MISS) { |
// Cache miss, skip this resource. |
- DVLOG(1) << "Cache miss for url: " << source->GetUrl(); |
+ DVLOG(1) << "Cache miss for url: " << source->GetURL(); |
AdvanceEntry(); |
return; |
} |
if (source->GetStatus().status() != net::URLRequestStatus::SUCCESS) { |
// Some other error occurred, e.g. the request could have been cancelled. |
- DVLOG(1) << "Unsuccessful fetch: " << source->GetUrl(); |
+ DVLOG(1) << "Unsuccessful fetch: " << source->GetURL(); |
AdvanceEntry(); |
return; |
} |
@@ -124,9 +124,9 @@ |
// might not be the same as the one we asked for. |
// For redirects, resources_it_->first != url.spec(). |
ClientMalwareReportRequest::Resource* resource = |
- GetResource(source->GetUrl()); |
+ GetResource(source->GetURL()); |
if (!resource) { |
- DVLOG(1) << "Cannot find resource for url:" << source->GetUrl(); |
+ DVLOG(1) << "Cannot find resource for url:" << source->GetURL(); |
AdvanceEntry(); |
return; |
} |