| Index: Source/modules/speech/SpeechSynthesis.cpp
|
| diff --git a/Source/modules/speech/SpeechSynthesis.cpp b/Source/modules/speech/SpeechSynthesis.cpp
|
| index 925133e6c295419c8f8cb86b93b4f733fbf428be..5ac19d7b72ea3dd6b71e7e9b8292b5990a8d79e7 100644
|
| --- a/Source/modules/speech/SpeechSynthesis.cpp
|
| +++ b/Source/modules/speech/SpeechSynthesis.cpp
|
| @@ -161,8 +161,8 @@ void SpeechSynthesis::handleSpeakingCompleted(SpeechSynthesisUtterance* utteranc
|
|
|
| void SpeechSynthesis::boundaryEventOccurred(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance, SpeechBoundary boundary, unsigned charIndex)
|
| {
|
| - DEFINE_STATIC_LOCAL(const String, wordBoundaryString, (ASCIILiteral("word")));
|
| - DEFINE_STATIC_LOCAL(const String, sentenceBoundaryString, (ASCIILiteral("sentence")));
|
| + DEFINE_STATIC_LOCAL(const String, wordBoundaryString, ("word"));
|
| + DEFINE_STATIC_LOCAL(const String, sentenceBoundaryString, ("sentence"));
|
|
|
| switch (boundary) {
|
| case SpeechWordBoundary:
|
|
|