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

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

Issue 1159143006: Oilpan: Remove Heap::s_lastGCWasConservative (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 | Source/platform/heap/Heap.cpp » ('j') | Source/platform/heap/Heap.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.h
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
index fdf24de7de2a5a962ffc337dedc6b423320e5e84..a39bc776c1141504730417d76cc764391de519ee 100644
--- a/Source/platform/heap/Heap.h
+++ b/Source/platform/heap/Heap.h
@@ -918,6 +918,7 @@ public:
static void collectAllGarbage();
static void processMarkingStack(Visitor*);
+ static void processEphemerons(Visitor*);
static void postMarkingProcessing(Visitor*);
static void globalWeakProcessing(Visitor*);
static void setForcePreciseGCForTesting();
@@ -946,10 +947,6 @@ public:
static void flushHeapDoesNotContainCache();
- // Return true if the last GC found a pointer into a heap page
- // during conservative scanning.
- static bool lastGCWasConservative() { return s_lastGCWasConservative; }
-
static FreePagePool* freePagePool() { return s_freePagePool; }
static OrphanedPagePool* orphanedPagePool() { return s_orphanedPagePool; }
@@ -1015,7 +1012,6 @@ private:
static CallbackStack* s_ephemeronStack;
static HeapDoesNotContainCache* s_heapDoesNotContainCache;
static bool s_shutdownCalled;
- static bool s_lastGCWasConservative;
static FreePagePool* s_freePagePool;
static OrphanedPagePool* s_orphanedPagePool;
static RegionTree* s_regionTree;
« no previous file with comments | « no previous file | Source/platform/heap/Heap.cpp » ('j') | Source/platform/heap/Heap.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698