Chromium Code Reviews| 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..4976f8b678dd23712dce8f47f2c27761514d7431 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,7 +73,8 @@ 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. |
| + // 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. |
|
Nico
2016/10/03 17:03:02
nit: put on previous line?
hans
2016/10/03 17:33:54
Done.
|
| return currentSpeechUtterance(); |
| } |