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

Unified Diff: Source/modules/speech/SpeechSynthesisUtterance.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/speech/SpeechSynthesisUtterance.h ('k') | Source/modules/webdatabase/DatabaseContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/SpeechSynthesisUtterance.cpp
diff --git a/Source/modules/speech/SpeechSynthesisUtterance.cpp b/Source/modules/speech/SpeechSynthesisUtterance.cpp
index b19710f4d0ea9919346eb728867984a9004e7d4f..c394a3c166e749c6234cfe82152e4ab12cefa47e 100644
--- a/Source/modules/speech/SpeechSynthesisUtterance.cpp
+++ b/Source/modules/speech/SpeechSynthesisUtterance.cpp
@@ -34,7 +34,7 @@ PassRefPtr<SpeechSynthesisUtterance> SpeechSynthesisUtterance::create(ScriptExec
}
SpeechSynthesisUtterance::SpeechSynthesisUtterance(ScriptExecutionContext* context, const String& text)
- : ContextDestructionObserver(context)
+ : ContextLifecycleObserver(context)
, m_platformUtterance(PlatformSpeechSynthesisUtterance::create(this))
{
ScriptWrappable::init(this);
@@ -48,7 +48,7 @@ SpeechSynthesisUtterance::~SpeechSynthesisUtterance()
ScriptExecutionContext* SpeechSynthesisUtterance::scriptExecutionContext() const
{
- return ContextDestructionObserver::scriptExecutionContext();
+ return ContextLifecycleObserver::scriptExecutionContext();
}
const AtomicString& SpeechSynthesisUtterance::interfaceName() const
« no previous file with comments | « Source/modules/speech/SpeechSynthesisUtterance.h ('k') | Source/modules/webdatabase/DatabaseContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698