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

Unified Diff: Source/core/platform/audio/AudioArray.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
« no previous file with comments | « Source/core/platform/SharedBuffer.cpp ('k') | Source/core/platform/audio/FFTFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/audio/AudioArray.h
diff --git a/Source/core/platform/audio/AudioArray.h b/Source/core/platform/audio/AudioArray.h
index b161cf2626f2bd947b42df8ee27be462caae03ec..3959361b627f8c8ef691ef2187133276ac3cfc39 100644
--- a/Source/core/platform/audio/AudioArray.h
+++ b/Source/core/platform/audio/AudioArray.h
@@ -142,14 +142,6 @@ public:
memcpy(this->data() + start, sourceData, sizeof(T) * (end - start));
}
- template<typename MemoryObjectInfo>
- void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
- {
- typename MemoryObjectInfo::ClassInfo info(memoryObjectInfo, this);
- info.addRawBuffer(m_allocation, m_size * sizeof(T), "AudioArrayData", "allocation");
- info.ignoreMember(m_alignedData);
- }
-
private:
static T* alignedAddress(T* address, intptr_t alignment)
{
« no previous file with comments | « Source/core/platform/SharedBuffer.cpp ('k') | Source/core/platform/audio/FFTFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698