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

Unified Diff: content/browser/background_fetch/background_fetch_data_manager.h

Issue 2774263003: Added ServiceWorkerResponses to GetJobResponse callback (Closed)
Patch Set: Rebase to pull in BackgroundFetchRegistrationId patch 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_data_manager.h
diff --git a/content/browser/background_fetch/background_fetch_data_manager.h b/content/browser/background_fetch/background_fetch_data_manager.h
index 921e8a9489d7c6b4df910ccaa7bf373e84e927a6..6267a457bbbc5c11e2de9d2136e1886bf2c10373 100644
--- a/content/browser/background_fetch/background_fetch_data_manager.h
+++ b/content/browser/background_fetch/background_fetch_data_manager.h
@@ -22,7 +22,7 @@
namespace content {
class BrowserContext;
-class BlobHandle;
+class ChromeBlobStorageContext;
// The BackgroundFetchDataManager keeps track of all of the outstanding requests
// which are in process in the DownloadManager. When Chromium restarts, it is
@@ -79,9 +79,10 @@ class CONTENT_EXPORT BackgroundFetchDataManager {
const std::string& job_guid,
size_t request_index);
- void DidGetRequestResponse(const std::string& job_guid,
- int request_sequence_number,
- std::unique_ptr<BlobHandle> blob_handle);
+ void DidGetBlobStorageContext(
+ const std::string& job_guid,
+ const BackgroundFetchResponseCompleteCallback& callback,
+ ChromeBlobStorageContext* blob_context);
// Indirectly, this is owned by the BrowserContext.
BrowserContext* browser_context_;

Powered by Google App Engine
This is Rietveld 408576698