Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1346)

Unified Diff: Source/platform/network/FormData.h

Issue 662383002: Remove FormData::alwaysStream() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/xmlhttprequest/XMLHttpRequest.cpp ('k') | Source/platform/network/FormData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/network/FormData.h
diff --git a/Source/platform/network/FormData.h b/Source/platform/network/FormData.h
index 024a1c9e8b6e9340734a0586921ee0c0a474820b..ecacf05cc6e40b41a1aae0049a57dfb83cdc87cc 100644
--- a/Source/platform/network/FormData.h
+++ b/Source/platform/network/FormData.h
@@ -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;
};
« no previous file with comments | « Source/core/xmlhttprequest/XMLHttpRequest.cpp ('k') | Source/platform/network/FormData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698