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

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

Issue 13973026: remove memoryinstrumentation Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove the rest part of MemoryInstrumentation Created 7 years, 8 months 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
Index: Source/core/platform/network/FormData.h
diff --git a/Source/core/platform/network/FormData.h b/Source/core/platform/network/FormData.h
index 7e7c6e2463b504f65d70309dc02f1a94076ecb81..0a1dcddcd075a141e169c21aad23f58eaf2f7f13 100644
--- a/Source/core/platform/network/FormData.h
+++ b/Source/core/platform/network/FormData.h
@@ -41,8 +41,6 @@ public:
explicit FormDataElement(const KURL& blobURL) : m_type(encodedBlob), m_url(blobURL) { }
FormDataElement(const KURL& url, long long start, long long length, double expectedFileModificationTime) : m_type(encodedURL), m_url(url), m_fileStart(start), m_fileLength(length), m_expectedFileModificationTime(expectedFileModificationTime), m_shouldGenerateFile(false) { }
- void reportMemoryUsage(MemoryObjectInfo*) const;
-
enum Type {
data,
encodedFile
@@ -132,8 +130,6 @@ public:
bool containsPasswordData() const { return m_containsPasswordData; }
void setContainsPasswordData(bool containsPasswordData) { m_containsPasswordData = containsPasswordData; }
- void reportMemoryUsage(MemoryObjectInfo*) const;
-
static EncodingType parseEncodingType(const String& type)
{
if (equalIgnoringCase(type, "text/plain"))
« no previous file with comments | « Source/core/platform/image-decoders/skia/ImageDecoderSkia.cpp ('k') | Source/core/platform/network/FormData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698