| Index: third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
|
| index 9ada47013020f3d406deba1131e0839fa81b7253..3496af85a605e69da886a815a32c81f590d7c952 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
|
| @@ -208,12 +208,6 @@ void WebURLRequest::visitHTTPHeaderFields(WebHTTPHeaderVisitor* visitor) const
|
|
|
| WebHTTPBody WebURLRequest::httpBody() const
|
| {
|
| - // TODO(mkwst): This is wrong, as it means that we're producing the body
|
| - // before any ServiceWorker has a chance to operate, which means we're
|
| - // revealing data to the SW that we ought to be hiding. Baby steps.
|
| - // https://crbug.com/599597
|
| - if (m_private->m_resourceRequest->attachedCredentialBody())
|
| - return WebHTTPBody(m_private->m_resourceRequest->attachedCredentialBody());
|
| return WebHTTPBody(m_private->m_resourceRequest->httpBody());
|
| }
|
|
|
|
|