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

Unified Diff: Source/modules/speech/SpeechRecognitionEvent.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/modules/speech/SpeechRecognitionEvent.cpp
diff --git a/Source/modules/speech/SpeechRecognitionEvent.cpp b/Source/modules/speech/SpeechRecognitionEvent.cpp
index 713c663c4f3ac3a957575815cee4eac7c369f56b..2da1ce00186c3608f077301baa9848caef3fd53e 100644
--- a/Source/modules/speech/SpeechRecognitionEvent.cpp
+++ b/Source/modules/speech/SpeechRecognitionEvent.cpp
@@ -68,7 +68,6 @@ const AtomicString& SpeechRecognitionEvent::interfaceName() const
SpeechRecognitionEvent::SpeechRecognitionEvent()
: m_resultIndex(0)
{
- ScriptWrappable::init(this);
}
SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, const SpeechRecognitionEventInit& initializer)
@@ -76,7 +75,6 @@ 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, SpeechRecognitionResultList* results)
@@ -84,7 +82,6 @@ SpeechRecognitionEvent::SpeechRecognitionEvent(const AtomicString& eventName, un
, m_resultIndex(resultIndex)
, m_results(results)
{
- ScriptWrappable::init(this);
}
SpeechRecognitionEvent::~SpeechRecognitionEvent()

Powered by Google App Engine
This is Rietveld 408576698