Index: Source/core/platform/network/FormData.cpp |
diff --git a/Source/core/platform/network/FormData.cpp b/Source/core/platform/network/FormData.cpp |
index c5108066e77e4c2bdbcb3c971a10f1f136366dde..17d0f83893619fbbea5a1641e1341a751982b008 100644 |
--- a/Source/core/platform/network/FormData.cpp |
+++ b/Source/core/platform/network/FormData.cpp |
@@ -34,11 +34,9 @@ |
#include "FormDataList.h" |
#include "MIMETypeRegistry.h" |
#include "Page.h" |
-#include "PlatformMemoryInstrumentation.h" |
#include "TextEncoding.h" |
#include <wtf/Decoder.h> |
#include <wtf/Encoder.h> |
-#include <wtf/MemoryInstrumentationVector.h> |
namespace WebCore { |
@@ -341,22 +339,6 @@ void FormData::removeGeneratedFilesIfNeeded() |
m_hasGeneratedFiles = false; |
} |
-void FormData::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Loader); |
- info.addMember(m_boundary, "boundary"); |
- info.addMember(m_elements, "elements"); |
-} |
- |
-void FormDataElement::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Loader); |
- info.addMember(m_data, "data"); |
- info.addMember(m_filename, "filename"); |
- info.addMember(m_url, "url"); |
- info.addMember(m_generatedFilename, "generatedFilename"); |
-} |
- |
static void encodeElement(Encoder& encoder, const FormDataElement& element) |
{ |
encoder.encodeUInt32(element.m_type); |