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

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

Issue 2743023002: Migrate WTF::Deque::append() to ::push_back() (Closed)
Patch Set: rebase Created 3 years, 9 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/SQLTransactionBackend.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp
index 028afc9b97cc19791c50dc592cddb0853e6fe348..dda4200aea04d4929d0f5b2eaa2f24973a22a162 100644
--- a/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/SQLTransactionBackend.cpp
@@ -501,7 +501,7 @@ void SQLTransactionBackend::enqueueStatementBackend(
SQLStatementBackend* statementBackend) {
DCHECK(isMainThread());
MutexLocker locker(m_statementMutex);
- m_statementQueue.append(statementBackend);
+ m_statementQueue.push_back(statementBackend);
}
void SQLTransactionBackend::computeNextStateAndCleanupIfNeeded() {

Powered by Google App Engine
This is Rietveld 408576698