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

Unified Diff: Source/core/inspector/HeapGraphSerializer.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/inspector/HeapGraphSerializer.h
diff --git a/Source/core/inspector/HeapGraphSerializer.h b/Source/core/inspector/HeapGraphSerializer.h
index 6669805e5cea08150d38e9ed507ee36394d1a099..476d8f3e31070c16bd80f12c06552a2d8ba47232 100644
--- a/Source/core/inspector/HeapGraphSerializer.h
+++ b/Source/core/inspector/HeapGraphSerializer.h
@@ -35,7 +35,6 @@
#include "InspectorFrontend.h"
#include <wtf/Forward.h>
#include <wtf/HashMap.h>
-#include <wtf/MemoryInstrumentation.h>
#include <wtf/Noncopyable.h>
#include <wtf/Vector.h>
#include <wtf/text/StringHash.h>
@@ -54,16 +53,11 @@ public:
explicit HeapGraphSerializer(Client*);
~HeapGraphSerializer();
- void reportNode(const WTF::MemoryObjectInfo&);
- void reportEdge(const void*, const char*, WTF::MemberType);
- void reportLeaf(const WTF::MemoryObjectInfo&, const char*);
void reportBaseAddress(const void*, const void*);
int registerString(const char*);
PassRefPtr<InspectorObject> finish();
- void reportMemoryUsage(MemoryObjectInfo*) const;
-
private:
void pushUpdateIfNeeded();
void pushUpdate();
@@ -74,7 +68,6 @@ private:
int registerTypeString(const char*);
void reportEdgeImpl(const int toNodeId, const char* name, int memberType);
- int reportNodeImpl(const WTF::MemoryObjectInfo&, int edgesCount);
Client* m_client;
@@ -102,7 +95,6 @@ private:
Vector<const void*> m_roots;
RefPtr<InspectorObject> m_typeStrings;
- size_t m_edgeTypes[WTF::LastMemberTypeEntry];
int m_unknownClassNameId;
int m_leafCount;
« no previous file with comments | « Source/core/html/shadow/DateTimeNumericFieldElement.h ('k') | Source/core/inspector/HeapGraphSerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698