| OLD | NEW |
| 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 #ifndef BlinkGCMemoryDumpProvider_h | 5 #ifndef BlinkGCMemoryDumpProvider_h |
| 6 #define BlinkGCMemoryDumpProvider_h | 6 #define BlinkGCMemoryDumpProvider_h |
| 7 | 7 |
| 8 #include "base/trace_event/memory_dump_provider.h" | 8 #include "base/trace_event/memory_dump_provider.h" |
| 9 #include "platform/PlatformExport.h" | 9 #include "platform/PlatformExport.h" |
| 10 #include "platform/heap/BlinkGC.h" | 10 #include "platform/heap/BlinkGC.h" |
| 11 #include "wtf/Allocator.h" | 11 #include "platform/wtf/Allocator.h" |
| 12 #include "wtf/ThreadingPrimitives.h" | 12 #include "platform/wtf/ThreadingPrimitives.h" |
| 13 #include "wtf/text/WTFString.h" | 13 #include "platform/wtf/text/WTFString.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 namespace trace_event { | 16 namespace trace_event { |
| 17 | 17 |
| 18 class AllocationRegister; | 18 class AllocationRegister; |
| 19 class MemoryAllocatorDump; | 19 class MemoryAllocatorDump; |
| 20 | 20 |
| 21 } // namespace trace_event | 21 } // namespace trace_event |
| 22 } // namespace base | 22 } // namespace base |
| 23 | 23 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 Mutex m_allocationRegisterMutex; | 60 Mutex m_allocationRegisterMutex; |
| 61 std::unique_ptr<base::trace_event::AllocationRegister> m_allocationRegister; | 61 std::unique_ptr<base::trace_event::AllocationRegister> m_allocationRegister; |
| 62 std::unique_ptr<base::trace_event::ProcessMemoryDump> | 62 std::unique_ptr<base::trace_event::ProcessMemoryDump> |
| 63 m_currentProcessMemoryDump; | 63 m_currentProcessMemoryDump; |
| 64 bool m_isHeapProfilingEnabled; | 64 bool m_isHeapProfilingEnabled; |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace blink | 67 } // namespace blink |
| 68 | 68 |
| 69 #endif | 69 #endif |
| OLD | NEW |