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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechRecognition.cpp

Issue 2386203002: Reflow comments in Source/modules/speech and platform/speech (Closed)
Patch Set: Address comments Created 4 years, 2 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: 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() {}

Powered by Google App Engine
This is Rietveld 408576698