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

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

Issue 2777063008: Connect BackgroundFetch to the OfflineItemCollection
Patch Set: 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
Index: content/browser/background_fetch/background_fetch_context.cc
diff --git a/content/browser/background_fetch/background_fetch_context.cc b/content/browser/background_fetch/background_fetch_context.cc
index 5506585dfe2f993d31be576d4f4ef9297179a3a1..4871ac072777c3795ddf8647511c3aa0dda76b69 100644
--- a/content/browser/background_fetch/background_fetch_context.cc
+++ b/content/browser/background_fetch/background_fetch_context.cc
@@ -101,4 +101,13 @@ void BackgroundFetchContext::DidFinishFetch(
active_fetches_.erase(registration_id);
}
+void BackgroundFetchContext::CancelDownload(
+ const std::string& registration_id) {}
Peter Beverloo 2017/03/29 14:32:12 micro nit: lack of symmetry in the argument names
harkness 2017/03/30 12:42:35 Done.
+
+void BackgroundFetchContext::PauseDownload(const std::string& registration_id) {
+}
+
+void BackgroundFetchContext::ResumeDownload(
+ const std::string& registration_id) {}
Peter Beverloo 2017/03/29 14:32:12 nit: it'd be best to hook these up with the JobCon
harkness 2017/03/30 12:42:35 My plan was to hook these up in the next CL to min
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698