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

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

Issue 661603005: Oilpan: Introduce class MainThreadOnly (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | « Source/platform/heap/Heap.h ('k') | Source/platform/heap/HeapTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.cpp
diff --git a/Source/platform/heap/Heap.cpp b/Source/platform/heap/Heap.cpp
index fe91e41e8de11f975323192664639643827fc205..52d8a2a927d2fe16f9ab521406e2bb1299d3e234 100644
--- a/Source/platform/heap/Heap.cpp
+++ b/Source/platform/heap/Heap.cpp
@@ -2435,7 +2435,7 @@ void Heap::collectGarbage(ThreadState::StackState stackState, ThreadState::Cause
// Disallow allocation during garbage collection (but not
// during the finalization that happens when the gcScope is
// torn down).
- NoAllocationScope<AnyThread> noAllocationScope;
+ NoAllocationScope<AnyThreadAffinity> noAllocationScope;
prepareForGC();
@@ -2491,7 +2491,7 @@ void Heap::collectGarbageForTerminatingThread(ThreadState* state)
// same time as a thread local GC.
{
- NoAllocationScope<AnyThread> noAllocationScope;
+ NoAllocationScope<AnyThreadAffinity> noAllocationScope;
state->enterGC();
state->prepareForGC();
« no previous file with comments | « Source/platform/heap/Heap.h ('k') | Source/platform/heap/HeapTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698