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

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechSynthesis.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/SpeechSynthesis.cpp
diff --git a/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp b/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
index 4c24dc030d7ffd9dcd83868440ecb935beaa3e6a..8351b0a02f1e529a4979d7aeed027202f37f7eb4 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
+++ b/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
@@ -61,7 +61,8 @@ const HeapVector<Member<SpeechSynthesisVoice>>& SpeechSynthesis::getVoices() {
if (m_voiceList.size())
return m_voiceList;
- // If the voiceList is empty, that's the cue to get the voices from the platform again.
+ // If the voiceList is empty, that's the cue to get the voices from the
+ // platform again.
const Vector<RefPtr<PlatformSpeechSynthesisVoice>>& platformVoices =
m_platformSpeechSynthesizer->voiceList();
size_t voiceCount = platformVoices.size();
@@ -72,8 +73,9 @@ const HeapVector<Member<SpeechSynthesisVoice>>& SpeechSynthesis::getVoices() {
}
bool SpeechSynthesis::speaking() const {
- // If we have a current speech utterance, then that means we're assumed to be in a speaking state.
- // This state is independent of whether the utterance happens to be paused.
+ // If we have a current speech utterance, then that means we're assumed to be
+ // in a speaking state. This state is independent of whether the utterance
+ // happens to be paused.
return currentSpeechUtterance();
}

Powered by Google App Engine
This is Rietveld 408576698