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

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

Issue 2625293002: Remove ThreadHeapMode (Closed)
Patch Set: Created 3 years, 11 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
Index: third_party/WebKit/Source/modules/webdatabase/DatabaseThread.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseThread.cpp b/third_party/WebKit/Source/modules/webdatabase/DatabaseThread.cpp
index dcea2941ea7ebdbf08993db4ea47e39b1a9a5758..ab29b40c08e676afc36a42dcaf9a0f2fda666787 100644
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseThread.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseThread.cpp
@@ -60,8 +60,7 @@ void DatabaseThread::start() {
ASSERT(isMainThread());
if (m_thread)
return;
- m_thread = WebThreadSupportingGC::create("WebCore: Database",
- BlinkGC::PerThreadHeapMode);
+ m_thread = WebThreadSupportingGC::create("WebCore: Database");
m_thread->postTask(BLINK_FROM_HERE,
crossThreadBind(&DatabaseThread::setupDatabaseThread,
wrapCrossThreadPersistent(this)));

Powered by Google App Engine
This is Rietveld 408576698