| Index: Source/modules/encryptedmedia/MediaKeySession.cpp
|
| diff --git a/Source/modules/encryptedmedia/MediaKeySession.cpp b/Source/modules/encryptedmedia/MediaKeySession.cpp
|
| index 78bcbc646f82471423e56354c7c9a281aa161dc9..4a95124cb86d3ad07ead65b783fda899551616ba 100644
|
| --- a/Source/modules/encryptedmedia/MediaKeySession.cpp
|
| +++ b/Source/modules/encryptedmedia/MediaKeySession.cpp
|
| @@ -125,7 +125,7 @@ void MediaKeySession::update(Uint8Array* response, ExceptionState& exceptionStat
|
| m_pendingActions.append(PendingAction::CreatePendingUpdate(response));
|
|
|
| if (!m_actionTimer.isActive())
|
| - m_actionTimer.startOneShot(0);
|
| + m_actionTimer.startOneShot(0, FROM_HERE);
|
| }
|
|
|
| void MediaKeySession::release(ExceptionState& exceptionState)
|
| @@ -144,7 +144,7 @@ void MediaKeySession::release(ExceptionState& exceptionState)
|
| m_pendingActions.append(PendingAction::CreatePendingRelease());
|
|
|
| if (!m_actionTimer.isActive())
|
| - m_actionTimer.startOneShot(0);
|
| + m_actionTimer.startOneShot(0, FROM_HERE);
|
| }
|
|
|
| void MediaKeySession::actionTimerFired(Timer<MediaKeySession>*)
|
|
|