Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp

Issue 2577053002: ActiveScriptWrappable: GC wrappers in detached ExecutionContexts. (Closed)
Patch Set: component build fix(msvc) Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp
diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp b/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp
index 521ec13b2d7362ce6b76de37e5b9ea24bc922a48..96f83454d726c77a86fd2162b9138c70f6539c20 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp
@@ -162,7 +162,7 @@ bool SpeechRecognition::hasPendingActivity() const {
}
SpeechRecognition::SpeechRecognition(Page* page, ExecutionContext* context)
- : ActiveScriptWrappable(this),
+ : ActiveScriptWrappable<SpeechRecognition>(this),
SuspendableObject(context),
m_grammars(SpeechGrammarList::create()), // FIXME: The spec is not clear
// on the default value for the
« no previous file with comments | « third_party/WebKit/Source/modules/speech/SpeechRecognition.h ('k') | third_party/WebKit/Source/modules/vr/VRDisplay.h » ('j') | no next file with comments »

Powered by Google App Engine