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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.h

Issue 2549393005: Remove ContextLifecycleObserver from SpeechSynthesisUtterance (Closed)
Patch Set: temp Created 4 years 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 | « no previous file | third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.h
diff --git a/third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.h b/third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.h
index 39f4b232a018c90864ca08a821f45fcee57ddf99..bad1e60de231607de542717aa87811435dfb7350 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.h
+++ b/third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.h
@@ -26,7 +26,6 @@
#ifndef SpeechSynthesisUtterance_h
#define SpeechSynthesisUtterance_h
-#include "core/dom/ContextLifecycleObserver.h"
#include "modules/EventTargetModules.h"
#include "modules/speech/SpeechSynthesisVoice.h"
#include "platform/heap/Handle.h"
@@ -36,8 +35,7 @@ namespace blink {
class SpeechSynthesisUtterance final
: public EventTargetWithInlineData,
- public PlatformSpeechSynthesisUtteranceClient,
- public ContextLifecycleObserver {
+ public PlatformSpeechSynthesisUtteranceClient {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(SpeechSynthesisUtterance);
@@ -91,6 +89,7 @@ class SpeechSynthesisUtterance final
// EventTarget
const AtomicString& interfaceName() const override;
+ Member<ExecutionContext> m_executionContext;
Member<PlatformSpeechSynthesisUtterance> m_platformUtterance;
Member<SpeechSynthesisVoice> m_voice;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/speech/SpeechSynthesisUtterance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698