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

Unified Diff: Source/modules/webdatabase/DatabaseThread.cpp

Issue 100433005: [oilpan] Rename PauseScope to SafePointScope (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 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
« no previous file with comments | « Source/heap/tests/HeapTest.cpp ('k') | Source/oilpan-chromium.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/DatabaseThread.cpp
diff --git a/Source/modules/webdatabase/DatabaseThread.cpp b/Source/modules/webdatabase/DatabaseThread.cpp
index c0a1db0a3d614da2ca9f43f0a89fd8e157981f38..71dbae2524a9ef04f980779a2ce8db90bffe4856 100644
--- a/Source/modules/webdatabase/DatabaseThread.cpp
+++ b/Source/modules/webdatabase/DatabaseThread.cpp
@@ -113,7 +113,7 @@ void DatabaseThread::databaseThread()
while (true) {
OwnPtr<DatabaseTask> task;
{
- ThreadState::PauseScope pauseScope(ThreadState::NoHeapPointersOnStack);
+ ThreadState::SafePointScope safePointScope(ThreadState::NoHeapPointersOnStack);
task = m_queue.waitForMessage();
if (!task)
break;
« no previous file with comments | « Source/heap/tests/HeapTest.cpp ('k') | Source/oilpan-chromium.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698