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

Unified Diff: Source/modules/serviceworkers/FetchRequestData.h

Issue 786893004: [ServiceWorker] Use BodyStreamBuffer as the body data of the Response object. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated yhirano's comment Created 6 years 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: Source/modules/serviceworkers/FetchRequestData.h
diff --git a/Source/modules/serviceworkers/FetchRequestData.h b/Source/modules/serviceworkers/FetchRequestData.h
index 6572c88fe48f538cb79f9d6b7d7e0dc5980ae5de..3e42f255b88c8bdbcf9678d9ea3dd5505acc9186 100644
--- a/Source/modules/serviceworkers/FetchRequestData.h
+++ b/Source/modules/serviceworkers/FetchRequestData.h
@@ -84,6 +84,7 @@ public:
void setHeaderList(FetchHeaderList* headerList) { m_headerList = headerList; }
PassRefPtr<BlobDataHandle> blobDataHandle() const { return m_blobDataHandle; }
void setBlobDataHandle(PassRefPtr<BlobDataHandle> blobHandle) { m_blobDataHandle = blobHandle; }
+ String contentType() const;
void trace(Visitor*);

Powered by Google App Engine
This is Rietveld 408576698