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

Unified Diff: third_party/WebKit/Source/platform/heap/Heap.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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
Index: third_party/WebKit/Source/platform/heap/Heap.cpp
diff --git a/third_party/WebKit/Source/platform/heap/Heap.cpp b/third_party/WebKit/Source/platform/heap/Heap.cpp
index bc83a90b9886d3b9b3a41c77f2e50dee28f1a5de..b1c035cc51b9069d6c31f29de13d8d4a0e59ecd9 100644
--- a/third_party/WebKit/Source/platform/heap/Heap.cpp
+++ b/third_party/WebKit/Source/platform/heap/Heap.cpp
@@ -202,11 +202,11 @@ void ThreadHeapStats::decreaseAllocatedSpace(size_t delta) {
}
ThreadHeap::ThreadHeap()
- : m_regionTree(makeUnique<RegionTree>()),
- m_heapDoesNotContainCache(wrapUnique(new HeapDoesNotContainCache)),
- m_safePointBarrier(makeUnique<SafePointBarrier>()),
- m_freePagePool(wrapUnique(new FreePagePool)),
- m_orphanedPagePool(wrapUnique(new OrphanedPagePool)),
+ : m_regionTree(WTF::makeUnique<RegionTree>()),
+ m_heapDoesNotContainCache(WTF::wrapUnique(new HeapDoesNotContainCache)),
+ m_safePointBarrier(WTF::makeUnique<SafePointBarrier>()),
+ m_freePagePool(WTF::wrapUnique(new FreePagePool)),
+ m_orphanedPagePool(WTF::wrapUnique(new OrphanedPagePool)),
m_markingStack(CallbackStack::create()),
m_postMarkingCallbackStack(CallbackStack::create()),
m_globalWeakCallbackStack(CallbackStack::create()),
« no previous file with comments | « third_party/WebKit/Source/platform/heap/GCTaskRunner.h ('k') | third_party/WebKit/Source/platform/heap/HeapTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698