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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.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/encryptedmedia/MediaKeySession.cpp
diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
index d4a4d412c14d890d49a38424658bce8bd606bbbd..e5585fffbcfe733d91caa094872c7523cc10241b 100644
--- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
+++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
@@ -515,7 +515,7 @@ ScriptPromise MediaKeySession::generateRequest(ScriptState* scriptState,
ScriptPromise promise = result->promise();
// 10. Run the following steps asynchronously (done in generateRequestTask())
- m_pendingActions.append(PendingAction::CreatePendingGenerateRequest(
+ m_pendingActions.push_back(PendingAction::CreatePendingGenerateRequest(
result, initDataType, initDataBuffer));
DCHECK(!m_actionTimer.isActive());
m_actionTimer.startOneShot(0, BLINK_FROM_HERE);
@@ -610,7 +610,7 @@ ScriptPromise MediaKeySession::load(ScriptState* scriptState,
ScriptPromise promise = result->promise();
// 8. Run the following steps asynchronously (done in loadTask())
- m_pendingActions.append(
+ m_pendingActions.push_back(
PendingAction::CreatePendingLoadRequest(result, sessionId));
DCHECK(!m_actionTimer.isActive());
m_actionTimer.startOneShot(0, BLINK_FROM_HERE);
@@ -729,7 +729,7 @@ ScriptPromise MediaKeySession::update(ScriptState* scriptState,
ScriptPromise promise = result->promise();
// 6. Run the following steps asynchronously (done in updateTask())
- m_pendingActions.append(
+ m_pendingActions.push_back(
PendingAction::CreatePendingUpdate(result, responseCopy));
if (!m_actionTimer.isActive())
m_actionTimer.startOneShot(0, BLINK_FROM_HERE);
@@ -774,7 +774,7 @@ ScriptPromise MediaKeySession::close(ScriptState* scriptState) {
ScriptPromise promise = result->promise();
// 5. Run the following steps in parallel (done in closeTask()).
- m_pendingActions.append(PendingAction::CreatePendingClose(result));
+ m_pendingActions.push_back(PendingAction::CreatePendingClose(result));
if (!m_actionTimer.isActive())
m_actionTimer.startOneShot(0, BLINK_FROM_HERE);
@@ -824,7 +824,7 @@ ScriptPromise MediaKeySession::remove(ScriptState* scriptState) {
ScriptPromise promise = result->promise();
// 5. Run the following steps asynchronously (done in removeTask()).
- m_pendingActions.append(PendingAction::CreatePendingRemove(result));
+ m_pendingActions.push_back(PendingAction::CreatePendingRemove(result));
if (!m_actionTimer.isActive())
m_actionTimer.startOneShot(0, BLINK_FROM_HERE);

Powered by Google App Engine
This is Rietveld 408576698