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

Unified Diff: Source/modules/webaudio/AudioNode.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/modules/webaudio/AudioNode.h ('k') | Source/wtf/Forward.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioNode.cpp
diff --git a/Source/modules/webaudio/AudioNode.cpp b/Source/modules/webaudio/AudioNode.cpp
index e2c93c0683e820652cadc5497b0789b05f0d49a1..4b4dab131a1a632f97224085a9633b384f765956 100644
--- a/Source/modules/webaudio/AudioNode.cpp
+++ b/Source/modules/webaudio/AudioNode.cpp
@@ -33,10 +33,8 @@
#include "AudioNodeOutput.h"
#include "AudioParam.h"
#include "ExceptionCode.h"
-#include "WebCoreMemoryInstrumentation.h"
#include <wtf/Atomics.h>
#include <wtf/MainThread.h>
-#include <wtf/MemoryInstrumentationVector.h>
#if DEBUG_AUDIONODE_REFERENCES
#include <stdio.h>
@@ -492,14 +490,6 @@ void AudioNode::finishDeref(RefType refType)
}
}
-void AudioNode::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Audio);
- info.addMember(m_context, "context");
- info.addMember(m_inputs, "inputs");
- info.addMember(m_outputs, "outputs");
-}
-
#if DEBUG_AUDIONODE_REFERENCES
bool AudioNode::s_isNodeCountInitialized = false;
« no previous file with comments | « Source/modules/webaudio/AudioNode.h ('k') | Source/wtf/Forward.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698