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

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

Issue 2683373002: Remove a redundant template from PagePool (Closed)
Patch Set: temp Created 3 years, 10 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 | « no previous file | third_party/WebKit/Source/platform/heap/Heap.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/heap/Heap.h
diff --git a/third_party/WebKit/Source/platform/heap/Heap.h b/third_party/WebKit/Source/platform/heap/Heap.h
index 7ce5d0e1b19f29d99be7d29c6d901988bd788e5f..b0d956edcfc092743eca02564ad8465e845351e2 100644
--- a/third_party/WebKit/Source/platform/heap/Heap.h
+++ b/third_party/WebKit/Source/platform/heap/Heap.h
@@ -47,7 +47,7 @@
namespace blink {
-class FreePagePool;
+class PagePool;
class PLATFORM_EXPORT HeapAllocHooks {
public:
@@ -442,7 +442,7 @@ class PLATFORM_EXPORT ThreadHeap {
void flushHeapDoesNotContainCache();
- FreePagePool* getFreePagePool() { return m_freePagePool.get(); }
+ PagePool* getFreePagePool() { return m_freePagePool.get(); }
// This look-up uses the region search tree and a negative contains cache to
// provide an efficient mapping from arbitrary addresses to the containing
@@ -479,7 +479,7 @@ class PLATFORM_EXPORT ThreadHeap {
std::unique_ptr<RegionTree> m_regionTree;
std::unique_ptr<HeapDoesNotContainCache> m_heapDoesNotContainCache;
std::unique_ptr<SafePointBarrier> m_safePointBarrier;
- std::unique_ptr<FreePagePool> m_freePagePool;
+ std::unique_ptr<PagePool> m_freePagePool;
std::unique_ptr<CallbackStack> m_markingStack;
std::unique_ptr<CallbackStack> m_postMarkingCallbackStack;
std::unique_ptr<CallbackStack> m_globalWeakCallbackStack;
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/heap/Heap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698