Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / network / FormData.h
index 024a1c9..ecacf05 100644 (file)
@@ -112,9 +112,6 @@ public:
     const Vector<char>& boundary() const { return m_boundary; }
     void setBoundary(Vector<char> boundary) { m_boundary = boundary; }
 
-    bool alwaysStream() const { return m_alwaysStream; }
-    void setAlwaysStream(bool alwaysStream) { m_alwaysStream = alwaysStream; }
-
     // Identifies a particular form submission instance.  A value of 0 is used
     // to indicate an unspecified identifier.
     void setIdentifier(int64_t identifier) { m_identifier = identifier; }
@@ -142,7 +139,6 @@ private:
     Vector<FormDataElement> m_elements;
 
     int64_t m_identifier;
-    bool m_alwaysStream;
     Vector<char> m_boundary;
     bool m_containsPasswordData;
 };