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

Unified Diff: Source/core/platform/network/ResourceRequest.cpp

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
« no previous file with comments | « Source/core/platform/network/ResourceRequest.h ('k') | Source/core/platform/network/ResourceResponse.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/network/ResourceRequest.cpp
diff --git a/Source/core/platform/network/ResourceRequest.cpp b/Source/core/platform/network/ResourceRequest.cpp
index 5f959b84458fafb0b4a611f2cf14ad105e324f6d..324a328100219e9758afb65aacf673b4cfbfb8e4 100644
--- a/Source/core/platform/network/ResourceRequest.cpp
+++ b/Source/core/platform/network/ResourceRequest.cpp
@@ -27,10 +27,7 @@
#include "config.h"
#include "ResourceRequest.h"
-#include "PlatformMemoryInstrumentation.h"
#include "ResourceRequest.h"
-#include <wtf/MemoryInstrumentationHashMap.h>
-#include <wtf/MemoryInstrumentationVector.h>
namespace WebCore {
@@ -307,17 +304,6 @@ bool ResourceRequest::isConditional() const
m_httpHeaderFields.contains("If-Unmodified-Since"));
}
-void ResourceRequest::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Loader);
- info.addMember(m_url, "url");
- info.addMember(m_firstPartyForCookies, "firstPartyForCookies");
- info.addMember(m_httpMethod, "httpMethod");
- info.addMember(m_httpHeaderFields, "httpHeaderFields");
- info.addMember(m_httpBody, "httpBody");
- info.addMember(m_extraData, "extraData");
-}
-
double ResourceRequest::defaultTimeoutInterval()
{
return s_defaultTimeoutInterval;
« no previous file with comments | « Source/core/platform/network/ResourceRequest.h ('k') | Source/core/platform/network/ResourceResponse.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698