Index: third_party/WebKit/Source/modules/fetch/Body.h |
diff --git a/third_party/WebKit/Source/modules/fetch/Body.h b/third_party/WebKit/Source/modules/fetch/Body.h |
index e297d4f85e55c3cfe7bdb65cc4f4a461eecadda1..e117b1ec8ec3b38fc5e0da0877e7fa13ea3b4184 100644 |
--- a/third_party/WebKit/Source/modules/fetch/Body.h |
+++ b/third_party/WebKit/Source/modules/fetch/Body.h |
@@ -39,8 +39,8 @@ public: |
virtual BodyStreamBuffer* bodyBuffer() = 0; |
virtual const BodyStreamBuffer* bodyBuffer() const = 0; |
- bool bodyUsed(); |
- void setBodyPassed() { m_bodyPassed = true; } |
+ virtual bool bodyUsed(); |
+ bool isBodyLocked(); |
// ActiveDOMObject override. |
bool hasPendingActivity() const override; |
@@ -56,7 +56,6 @@ public: |
private: |
virtual String mimeType() const = 0; |
- bool m_bodyPassed; |
bool m_opaque; |
}; |