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

Unified Diff: Source/WebCore/Modules/speech/SpeechRecognitionError.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/SpeechRecognitionError.cpp
diff --git a/Source/WebCore/Modules/speech/SpeechRecognitionError.cpp b/Source/WebCore/Modules/speech/SpeechRecognitionError.cpp
index 3fe584481c9521620d422308415ca00ca2e34c29..95f6a32161e75a6359ef6dd8fd1a7cf430ad7192 100644
--- a/Source/WebCore/Modules/speech/SpeechRecognitionError.cpp
+++ b/Source/WebCore/Modules/speech/SpeechRecognitionError.cpp
@@ -78,6 +78,7 @@ SpeechRecognitionError::SpeechRecognitionError(const String& error, const String
, m_error(error)
, m_message(message)
{
+ ScriptWrappable::init(this);
}
SpeechRecognitionError::SpeechRecognitionError(const AtomicString& eventName, const SpeechRecognitionErrorInit& initializer)
@@ -85,6 +86,7 @@ SpeechRecognitionError::SpeechRecognitionError(const AtomicString& eventName, co
, m_error(initializer.error)
, m_message(initializer.message)
{
+ ScriptWrappable::init(this);
}
const AtomicString& SpeechRecognitionError::interfaceName() const
« no previous file with comments | « Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.cpp ('k') | Source/WebCore/Modules/speech/SpeechRecognitionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698