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

Unified Diff: content/browser/download/download_id.cc

Issue 8401001: Fix history importing by delaying DownloadManager creation. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
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: content/browser/download/download_id.cc
diff --git a/content/browser/download/download_id.cc b/content/browser/download/download_id.cc
index bef4964b39d22b2114e17a51480a4f9a22759120..629bfa4ba00dd7493a4f4f7ce1efac674f890fa4 100644
--- a/content/browser/download/download_id.cc
+++ b/content/browser/download/download_id.cc
@@ -5,5 +5,5 @@
#include "content/browser/download/download_id.h"
std::ostream& operator<<(std::ostream& out, const DownloadId& global_id) {
- return out << global_id.manager_ << ":" << global_id.local();
+ return out << global_id.domain_ << ":" << global_id.local();
}

Powered by Google App Engine
This is Rietveld 408576698