| 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 4bff77a3e67dc8af8d0dfdefdb40018732168511..86a5f8bc181d1d84f3a6dfdadc2fb14cb614dc42 100644
|
| --- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
|
| +++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
|
| @@ -771,12 +771,12 @@ ScriptPromise MediaKeySession::close(ScriptState* scriptState) {
|
| SimpleResultPromise* result = new SimpleResultPromise(scriptState, this);
|
| ScriptPromise promise = result->promise();
|
|
|
| - // 4. Run the following steps in parallel (done in closeTask()).
|
| + // 5. Run the following steps in parallel (done in closeTask()).
|
| m_pendingActions.append(PendingAction::CreatePendingClose(result));
|
| if (!m_actionTimer.isActive())
|
| m_actionTimer.startOneShot(0, BLINK_FROM_HERE);
|
|
|
| - // 5. Return promise.
|
| + // 6. Return promise.
|
| return promise;
|
| }
|
|
|
|
|