| 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 d8a6ee256fcdaa1094c69ef4de9b765769c8311b..b9ca7065fb3fd1690ff0497a598261f39b7bb360 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp
|
| @@ -164,10 +164,9 @@ bool SpeechRecognition::hasPendingActivity() const {
|
| SpeechRecognition::SpeechRecognition(Page* page, ExecutionContext* context)
|
| : ActiveScriptWrappable(this),
|
| ActiveDOMObject(context),
|
| - m_grammars(
|
| - SpeechGrammarList::
|
| - create()) // FIXME: The spec is not clear on the default value for the grammars attribute.
|
| - ,
|
| + m_grammars(SpeechGrammarList::create()), // FIXME: The spec is not clear
|
| + // on the default value for the
|
| + // grammars attribute.
|
| m_audioTrack(nullptr),
|
| m_continuous(false),
|
| m_interimResults(false),
|
| @@ -175,7 +174,8 @@ SpeechRecognition::SpeechRecognition(Page* page, ExecutionContext* context)
|
| m_controller(SpeechRecognitionController::from(page)),
|
| m_started(false),
|
| m_stopping(false) {
|
| - // FIXME: Need to hook up with Page to get notified when the visibility changes.
|
| + // FIXME: Need to hook up with Page to get notified when the visibility
|
| + // changes.
|
| }
|
|
|
| SpeechRecognition::~SpeechRecognition() {}
|
|
|