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

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

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/platform/network/FormData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/network/FormData.cpp
diff --git a/Source/platform/network/FormData.cpp b/Source/platform/network/FormData.cpp
index 4641f730cad98155eaad3a41278c82cfd26bef15..d2e893a594ca8efa290a007da55351784b081c78 100644
--- a/Source/platform/network/FormData.cpp
+++ b/Source/platform/network/FormData.cpp
@@ -31,7 +31,6 @@ namespace blink {
inline FormData::FormData()
: m_identifier(0)
- , m_alwaysStream(false)
, m_containsPasswordData(false)
{
}
@@ -40,7 +39,6 @@ inline FormData::FormData(const FormData& data)
: RefCounted<FormData>()
, m_elements(data.m_elements)
, m_identifier(data.m_identifier)
- , m_alwaysStream(false)
, m_containsPasswordData(data.m_containsPasswordData)
{
}
@@ -84,8 +82,6 @@ PassRefPtr<FormData> FormData::deepCopy() const
{
RefPtr<FormData> formData(create());
- formData->m_alwaysStream = m_alwaysStream;
-
size_t n = m_elements.size();
formData->m_elements.reserveInitialCapacity(n);
for (size_t i = 0; i < n; ++i) {
« no previous file with comments | « Source/platform/network/FormData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698