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

Side by Side Diff: third_party/WebKit/Source/platform/heap/BlinkGCMemoryDumpProvider.cpp

Issue 2028483002: Remove abstract classes for memory dumper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "platform/heap/BlinkGCMemoryDumpProvider.h" 5 #include "platform/heap/BlinkGCMemoryDumpProvider.h"
6 6
7 #include "base/trace_event/heap_profiler_allocation_context_tracker.h" 7 #include "base/trace_event/heap_profiler_allocation_context_tracker.h"
8 #include "base/trace_event/heap_profiler_allocation_register.h" 8 #include "base/trace_event/heap_profiler_allocation_register.h"
9 #include "base/trace_event/memory_allocator_dump.h" 9 #include "base/trace_event/memory_allocator_dump.h"
10 #include "base/trace_event/process_memory_dump.h" 10 #include "base/trace_event/process_memory_dump.h"
11 #include "base/trace_event/trace_event_memory_overhead.h" 11 #include "base/trace_event/trace_event_memory_overhead.h"
12 #include "platform/WebMemoryAllocatorDump.h"
13 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
14 #include "platform/web_process_memory_dump_impl.h" 13 #include "platform/web_memory_allocator_dump.h"
15 #include "public/platform/Platform.h" 14 #include "public/platform/Platform.h"
16 #include "wtf/StdLibExtras.h" 15 #include "wtf/StdLibExtras.h"
17 #include "wtf/Threading.h" 16 #include "wtf/Threading.h"
18 17
19 namespace blink { 18 namespace blink {
20 namespace { 19 namespace {
21 20
22 void dumpMemoryTotals(base::trace_event::ProcessMemoryDump* memoryDump) 21 void dumpMemoryTotals(base::trace_event::ProcessMemoryDump* memoryDump)
23 { 22 {
24 base::trace_event::MemoryAllocatorDump* allocatorDump = memoryDump->CreateAl locatorDump("blink_gc"); 23 base::trace_event::MemoryAllocatorDump* allocatorDump = memoryDump->CreateAl locatorDump("blink_gc");
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 } 130 }
132 131
133 void BlinkGCMemoryDumpProvider::remove(Address address) 132 void BlinkGCMemoryDumpProvider::remove(Address address)
134 { 133 {
135 MutexLocker locker(m_allocationRegisterMutex); 134 MutexLocker locker(m_allocationRegisterMutex);
136 if (m_allocationRegister) 135 if (m_allocationRegister)
137 m_allocationRegister->Remove(address); 136 m_allocationRegister->Remove(address);
138 } 137 }
139 138
140 } // namespace blink 139 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/fonts/FontCache.cpp ('k') | third_party/WebKit/Source/platform/heap/Heap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698