Index: third_party/WebKit/Source/modules/webdatabase/Database.cpp |
diff --git a/third_party/WebKit/Source/modules/webdatabase/Database.cpp b/third_party/WebKit/Source/modules/webdatabase/Database.cpp |
index e4a3a79d5c223be74ef15c05c1b56cbb55eb6a06..543451f6eb91717122caba3fb364608a35f0e6be 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/Database.cpp |
+++ b/third_party/WebKit/Source/modules/webdatabase/Database.cpp |
@@ -844,7 +844,7 @@ void Database::runTransaction( |
ASSERT(callback == originalErrorCallback); |
if (callback) { |
OwnPtr<SQLErrorData> error = SQLErrorData::create(SQLError::UNKNOWN_ERR, "database has been closed"); |
- executionContext()->postTask(FROM_HERE, createSameThreadTask(&callTransactionErrorCallback, callback, error.release())); |
+ executionContext()->postTask(BLINK_FROM_HERE, createSameThreadTask(&callTransactionErrorCallback, callback, error.release())); |
} |
} |
} |
@@ -853,7 +853,7 @@ void Database::scheduleTransactionCallback(SQLTransaction* transaction) |
{ |
// The task is constructed in a database thread, and destructed in the |
// context thread. |
- executionContext()->postTask(FROM_HERE, createCrossThreadTask(&SQLTransaction::performPendingCallback, transaction)); |
+ executionContext()->postTask(BLINK_FROM_HERE, createCrossThreadTask(&SQLTransaction::performPendingCallback, transaction)); |
} |
Vector<String> Database::performGetTableNames() |