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

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

Issue 2795923002: Rewrite references to "wtf/" to "platform/wtf/" in platform/heap. (Closed)
Patch Set: Same as PS1; PS1 lacks some files for some reason. Created 3 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 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 #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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698