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

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

Issue 2774263003: Added ServiceWorkerResponses to GetJobResponse callback (Closed)
Patch Set: Move PostTask to correct thread 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 | « no previous file | content/browser/background_fetch/background_fetch_data_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f1b8c7ea1362191fe31dd53f36fc9818f9113365..e7710d94c5eba827e9c148f2c082e15be424b9f2 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
@@ -81,9 +81,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_;
« no previous file with comments | « no previous file | content/browser/background_fetch/background_fetch_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698