Index: Source/modules/serviceworkers/Request.cpp |
diff --git a/Source/modules/serviceworkers/Request.cpp b/Source/modules/serviceworkers/Request.cpp |
index fd334f28b7d09a581ef80e95d3275c13f71354a2..b3c5b3aac916104b604ee1937546c2a6bda3ab57 100644 |
--- a/Source/modules/serviceworkers/Request.cpp |
+++ b/Source/modules/serviceworkers/Request.cpp |
@@ -319,6 +319,11 @@ void Request::setBodyBlobHandle(PassRefPtr<BlobDataHandle> blobDataHandle) |
m_request->setBlobDataHandle(blobDataHandle); |
} |
+bool Request::hasBody() const |
+{ |
+ return m_request->blobDataHandle(); |
+} |
+ |
void Request::clearHeaderList() |
{ |
m_request->headerList()->clearList(); |