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

Unified Diff: Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp

Issue 13814002: First part of work to move V8 binding integrity off of vtables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/WebCore/Modules/speech/SpeechRecognitionEvent.cpp
diff --git a/Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp b/Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp
index d2d6be6e8afbd284ff2c3c459be9c2a0d3e2319c..88184ac0d7e05caa9b6b56715fb46c69b46840b7 100644
--- a/Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp
+++ b/Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp
@@ -77,6 +77,7 @@ SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, co
, m_resultIndex(initializer.resultIndex)
, m_results(initializer.results)
{
+ ScriptWrappable::init(this);
}
SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIndex, PassRefPtr<SpeechRecognitionResultList> results)
@@ -84,10 +85,12 @@ SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, un
, m_resultIndex(resultIndex)
, m_results(results)
{
+ ScriptWrappable::init(this);
}
SpeechRecognitionEvent::~SpeechRecognitionEvent()
{
+ ScriptWrappable::init(this);
}
} // namespace WebCore
« no previous file with comments | « Source/WebCore/Modules/speech/SpeechRecognitionError.cpp ('k') | Source/WebCore/Modules/speech/SpeechSynthesisEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698