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

Unified Diff: content/browser/background_fetch/background_fetch_request_info.cc

Issue 2727253002: Added DownloadItem::Observer to JobController. (Closed)
Patch Set: Added TODO Created 3 years, 9 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
« no previous file with comments | « content/browser/background_fetch/background_fetch_request_info.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/background_fetch/background_fetch_request_info.cc
diff --git a/content/browser/background_fetch/background_fetch_request_info.cc b/content/browser/background_fetch/background_fetch_request_info.cc
index ac20c90243fde7e6ec488679a6abff6299a39414..7c32613bc000f1ad9493936c8fc86625fd3b3b8c 100644
--- a/content/browser/background_fetch/background_fetch_request_info.cc
+++ b/content/browser/background_fetch/background_fetch_request_info.cc
@@ -19,7 +19,11 @@ BackgroundFetchRequestInfo::BackgroundFetchRequestInfo(const GURL& url,
BackgroundFetchRequestInfo::BackgroundFetchRequestInfo(
const BackgroundFetchRequestInfo& request)
- : guid_(request.guid_), url_(request.url_), tag_(request.tag_) {}
+ : guid_(request.guid_),
+ url_(request.url_),
+ tag_(request.tag_),
+ complete_(request.complete_),
+ download_guid_(request.download_guid_) {}
BackgroundFetchRequestInfo::~BackgroundFetchRequestInfo() = default;
« no previous file with comments | « content/browser/background_fetch/background_fetch_request_info.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698