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

Unified Diff: Source/modules/encryptedmedia/MediaKeySession.cpp

Issue 189833009: Trace where timers were scheduled in Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 6 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: 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>*)
« no previous file with comments | « Source/modules/device_orientation/DeviceSensorEventController.cpp ('k') | Source/modules/encryptedmedia/MediaKeys.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698