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

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

Issue 17351003: Rename ContextDestructionObserver to ContextLifecycleObserver (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reapplied Created 7 years, 6 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
« no previous file with comments | « Source/modules/encryptedmedia/MediaKeySession.h ('k') | Source/modules/mediastream/MediaStream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/encryptedmedia/MediaKeySession.cpp
diff --git a/Source/modules/encryptedmedia/MediaKeySession.cpp b/Source/modules/encryptedmedia/MediaKeySession.cpp
index e5b10551319ccef2150ce6e7459d61e3f0f62757..f95704a5dd77f8d8f65c2a13140fd6b8e5041056 100644
--- a/Source/modules/encryptedmedia/MediaKeySession.cpp
+++ b/Source/modules/encryptedmedia/MediaKeySession.cpp
@@ -41,7 +41,7 @@ PassRefPtr<MediaKeySession> MediaKeySession::create(ScriptExecutionContext* cont
}
MediaKeySession::MediaKeySession(ScriptExecutionContext* context, ContentDecryptionModule* cdm, MediaKeys* keys)
- : ContextDestructionObserver(context)
+ : ContextLifecycleObserver(context)
, m_asyncEventQueue(GenericEventQueue::create(this))
, m_keySystem(keys->keySystem())
, m_session(cdm->createSession(this))
@@ -198,7 +198,7 @@ const AtomicString& MediaKeySession::interfaceName() const
ScriptExecutionContext* MediaKeySession::scriptExecutionContext() const
{
- return ContextDestructionObserver::scriptExecutionContext();
+ return ContextLifecycleObserver::scriptExecutionContext();
}
}
« no previous file with comments | « Source/modules/encryptedmedia/MediaKeySession.h ('k') | Source/modules/mediastream/MediaStream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698