X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=Source%2FWebCore%2Fplatform%2Fnetwork%2FFormData.h;h=14981366b3ed5574a69b0b039add4092f2e89dcf;hp=213ddde1cfc57dbfcece4c47d2958b537f973a18;hb=3db55418113028618885f4476bfac48dd7a7c57f;hpb=943d8145955e01945e6c0cda96ec5b44823c0d89 diff --git a/Source/WebCore/platform/network/FormData.h b/Source/WebCore/platform/network/FormData.h index 213ddde..1498136 100644 --- a/Source/WebCore/platform/network/FormData.h +++ b/Source/WebCore/platform/network/FormData.h @@ -135,6 +135,9 @@ public: void setIdentifier(int64_t identifier) { m_identifier = identifier; } int64_t identifier() const { return m_identifier; } + bool containsPasswordData() const { return m_containsPasswordData; } + void setContainsPasswordData(bool containsPasswordData) { m_containsPasswordData = containsPasswordData; } + static EncodingType parseEncodingType(const String& type) { if (equalIgnoringCase(type, "text/plain")) @@ -156,6 +159,7 @@ private: bool m_hasGeneratedFiles; bool m_alwaysStream; Vector m_boundary; + bool m_containsPasswordData; }; inline bool operator==(const FormData& a, const FormData& b)