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

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

Issue 6881106: Treat ERR_CONNECTION_CLOSED as end-of-data marker for downloads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved detection code to URLRequestHttpJob. Created 9 years, 8 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/safe_browsing_database.cc
diff --git a/chrome/browser/safe_browsing/safe_browsing_database.cc b/chrome/browser/safe_browsing/safe_browsing_database.cc
index 16c4b38715cd1b85c09511e83ff27aec79e151fe..c4d764981ed1811b7f212b8be9dd384230780771 100644
--- a/chrome/browser/safe_browsing/safe_browsing_database.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_database.cc
@@ -449,7 +449,6 @@ FilePath SafeBrowsingDatabase::CsdWhitelistDBFilename(
}
SafeBrowsingStore* SafeBrowsingDatabaseNew::GetStore(const int list_id) {
- DVLOG(3) << "Get store for list: " << list_id;
Randy Smith (Not in Mondays) 2011/05/03 21:30:41 I doubt this is part of your CL, so you probably d
Scott Hess - ex-Googler 2011/05/03 21:50:29 If this is the log line you refer to in the CC to
ahendrickson 2011/05/04 15:08:25 Since all our debugging happens at VLOG(20), this
if (list_id == safe_browsing_util::PHISH ||
list_id == safe_browsing_util::MALWARE) {
return browse_store_.get();

Powered by Google App Engine
This is Rietveld 408576698