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

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

Issue 73623004: Make DatabaseTask inherit from WebTask (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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: Source/modules/webdatabase/DatabaseThread.cpp
diff --git a/Source/modules/webdatabase/DatabaseThread.cpp b/Source/modules/webdatabase/DatabaseThread.cpp
index fc01ff1f0356a7c879874adc30b6ae5c5f5a4fd0..8d51df242528b689e73a7a5892e6188de14a69e6 100644
--- a/Source/modules/webdatabase/DatabaseThread.cpp
+++ b/Source/modules/webdatabase/DatabaseThread.cpp
@@ -107,7 +107,7 @@ void DatabaseThread::databaseThread()
AutodrainedPool pool;
while (OwnPtr<DatabaseTask> task = m_queue.waitForMessage()) {
- task->performTask();
+ task->run();
pool.cycle();
}
« Source/modules/webdatabase/DatabaseTask.h ('K') | « Source/modules/webdatabase/DatabaseTask.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698