| Index: third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.cpp b/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.cpp
|
| index a5345ce08994362b083b82280cc39e854ba1caba..8bb01991b85702c9ce07ae65975a801ce7a94abc 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.cpp
|
| @@ -157,7 +157,7 @@ void DatabaseTracker::removeOpenDatabase(Database* database)
|
|
|
| ExecutionContext* executionContext = database->databaseContext()->executionContext();
|
| if (!executionContext->isContextThread())
|
| - executionContext->postTask(FROM_HERE, NotifyDatabaseObserverOnCloseTask::create(database));
|
| + executionContext->postTask(BLINK_FROM_HERE, NotifyDatabaseObserverOnCloseTask::create(database));
|
| else
|
| databaseClosed(database);
|
| }
|
| @@ -178,7 +178,7 @@ void DatabaseTracker::failedToOpenDatabase(Database* database)
|
| {
|
| ExecutionContext* executionContext = database->databaseContext()->executionContext();
|
| if (!executionContext->isContextThread())
|
| - executionContext->postTask(FROM_HERE, NotifyDatabaseObserverOnCloseTask::create(database));
|
| + executionContext->postTask(BLINK_FROM_HERE, NotifyDatabaseObserverOnCloseTask::create(database));
|
| else
|
| databaseClosed(database);
|
| }
|
| @@ -234,7 +234,7 @@ void DatabaseTracker::closeDatabasesImmediately(const String& originIdentifier,
|
|
|
| // We have to call closeImmediately() on the context thread.
|
| for (DatabaseSet::iterator it = databaseSet->begin(); it != databaseSet->end(); ++it)
|
| - (*it)->databaseContext()->executionContext()->postTask(FROM_HERE, CloseOneDatabaseImmediatelyTask::create(originIdentifier, name, *it));
|
| + (*it)->databaseContext()->executionContext()->postTask(BLINK_FROM_HERE, CloseOneDatabaseImmediatelyTask::create(originIdentifier, name, *it));
|
| }
|
|
|
| void DatabaseTracker::closeOneDatabaseImmediately(const String& originIdentifier, const String& name, Database* database)
|
|
|