Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(386)

Unified Diff: chrome/browser/safe_browsing/malware_details_cache.cc

Issue 8416020: Handle additional feedback from http://codereview.chromium.org/8395038/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698