Index: Source/core/html/DOMFormData.h |
diff --git a/Source/core/html/DOMFormData.h b/Source/core/html/DOMFormData.h |
index bd92523b9c36079c78dc9f8370b8605d7364892c..bb9d64455ed00d268c93feb950c035d43a556eef 100644 |
--- a/Source/core/html/DOMFormData.h |
+++ b/Source/core/html/DOMFormData.h |
@@ -70,14 +70,18 @@ public: |
void append(ExecutionContext*, const String& name, Blob*, const String& filename = String()); |
void get(const String& name, FormDataEntryValue& result); |
HeapVector<FormDataEntryValue> getAll(const String& name); |
+ bool has(const String& name); |
void set(const String& name, const String& value); |
void set(const String& name, Blob*, const String& filename = String()); |
+ void makeOpaque() { m_opaque = true; } |
+ |
private: |
explicit DOMFormData(const WTF::TextEncoding&); |
explicit DOMFormData(HTMLFormElement*); |
IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
+ bool m_opaque; |
}; |
} // namespace blink |