| Index: third_party/WebKit/Source/modules/webdatabase/SQLTransactionCoordinator.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLTransactionCoordinator.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLTransactionCoordinator.cpp
|
| index 90df91b69e4689e351d9f84338207c1615244703..9e8b2ee66700d89840777fc9796c2b5cbd4630ba 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/SQLTransactionCoordinator.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/SQLTransactionCoordinator.cpp
|
| @@ -62,7 +62,7 @@ void SQLTransactionCoordinator::processPendingTransactions(
|
| } while (!info.pendingTransactions.isEmpty() &&
|
| info.pendingTransactions.first()->isReadOnly());
|
| } else if (info.activeReadTransactions.isEmpty()) {
|
| - info.pendingTransactions.removeFirst();
|
| + info.pendingTransactions.pop_front();
|
| info.activeWriteTransaction = firstPendingTransaction;
|
| firstPendingTransaction->lockAcquired();
|
| }
|
|
|