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

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

Issue 1162533003: Oilpan: Rename makeConsistentForSweeping to makeConsistentForGC (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 | « Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/ThreadState.cpp
diff --git a/Source/platform/heap/ThreadState.cpp b/Source/platform/heap/ThreadState.cpp
index d9618393402e09b50ac8cde15375e2335c00c7d9..47d9c817abe92f99d5994400413fcd7d15f2993e 100644
--- a/Source/platform/heap/ThreadState.cpp
+++ b/Source/platform/heap/ThreadState.cpp
@@ -842,19 +842,19 @@ void ThreadState::flushHeapDoesNotContainCacheIfNeeded()
}
}
-void ThreadState::makeConsistentForSweeping()
+void ThreadState::makeConsistentForGC()
{
ASSERT(isInGC());
- TRACE_EVENT0("blink_gc", "ThreadState::makeConsistentForSweeping");
+ TRACE_EVENT0("blink_gc", "ThreadState::makeConsistentForGC");
for (int i = 0; i < NumberOfHeaps; ++i)
- m_heaps[i]->makeConsistentForSweeping();
+ m_heaps[i]->makeConsistentForGC();
}
void ThreadState::preGC()
{
ASSERT(!isInGC());
setGCState(GCRunning);
- makeConsistentForSweeping();
+ makeConsistentForGC();
prepareRegionTree();
flushHeapDoesNotContainCacheIfNeeded();
clearHeapAges();
« no previous file with comments | « Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698