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

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

Issue 1362973004: Rename FROM_HERE to BLINK_FROM_HERE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 years, 2 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/SQLTransactionClient.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLTransactionClient.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLTransactionClient.cpp
index f30e4d7088653bc6d40b39a1e62640c7f7d1d5ab..dbd81f5010ff72f16e9acaa8d3480cb1ec340c31 100644
--- a/third_party/WebKit/Source/modules/webdatabase/SQLTransactionClient.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/SQLTransactionClient.cpp
@@ -56,7 +56,7 @@ void SQLTransactionClient::didCommitWriteTransaction(Database* database)
String databaseName = database->stringIdentifier();
ExecutionContext* executionContext = database->databaseContext()->executionContext();
if (!executionContext->isContextThread()) {
- executionContext->postTask(FROM_HERE, createCrossThreadTask(&databaseModified, originIdentifier, databaseName));
+ executionContext->postTask(BLINK_FROM_HERE, createCrossThreadTask(&databaseModified, originIdentifier, databaseName));
} else {
databaseModified(originIdentifier, databaseName);
}

Powered by Google App Engine
This is Rietveld 408576698