Chromium Code Reviews| 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..0196759a4e5ffbc7bf0313fe3c435581a163c7eb 100644 |
| --- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp |
| +++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp |
| @@ -164,9 +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. |
| , |
|
Nico
2016/10/03 17:03:02
move this , after the m_grammars initializer
hans
2016/10/03 17:33:54
Done.
|
| m_audioTrack(nullptr), |
| m_continuous(false), |
| @@ -175,7 +175,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() {} |