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

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

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. 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/SpeechGrammar.cpp
diff --git a/Source/modules/speech/SpeechGrammar.cpp b/Source/modules/speech/SpeechGrammar.cpp
index 73b8701e1ca5c57090b1440d53ac0bf23514d2ba..850f0e0f812744b18f9a04f47a7b1acdb7257676 100644
--- a/Source/modules/speech/SpeechGrammar.cpp
+++ b/Source/modules/speech/SpeechGrammar.cpp
@@ -50,14 +50,12 @@ void SpeechGrammar::setSrc(ExecutionContext* executionContext, const String& src
SpeechGrammar::SpeechGrammar()
: m_weight(1.0)
{
- ScriptWrappable::init(this);
}
SpeechGrammar::SpeechGrammar(const KURL& src, double weight)
: m_src(src)
, m_weight(weight)
{
- ScriptWrappable::init(this);
}
} // namespace blink
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerRegistration.cpp ('k') | Source/modules/speech/SpeechGrammarList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698