Index: Source/core/platform/KURL.cpp |
diff --git a/Source/core/platform/KURL.cpp b/Source/core/platform/KURL.cpp |
index ca6b4df9d50f814f349310efc2945903fe77ca81..1a1709760736f3b856f424fdf0e4b19e01b79481 100644 |
--- a/Source/core/platform/KURL.cpp |
+++ b/Source/core/platform/KURL.cpp |
@@ -29,12 +29,10 @@ |
#include "DecodeEscapeSequences.h" |
#include "MIMETypeRegistry.h" |
-#include "PlatformMemoryInstrumentation.h" |
#include "TextEncoding.h" |
#include <stdio.h> |
#include <wtf/HashMap.h> |
#include <wtf/HexNumber.h> |
-#include <wtf/MemoryInstrumentationString.h> |
#include <wtf/StdLibExtras.h> |
#include <wtf/text/CString.h> |
#include <wtf/text/StringBuilder.h> |
@@ -242,12 +240,6 @@ String mimeTypeFromURL(const KURL& url) |
return MIMETypeRegistry::getMIMETypeForExtension(extension); |
} |
-void KURL::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this); |
- info.addMember(m_url, "url"); |
-} |
- |
bool KURL::isSafeToSendToAnotherThread() const |
{ |
return m_url.isSafeToSendToAnotherThread(); |