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

Unified Diff: third_party/WebKit/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp

Issue 1362973004: Rename FROM_HERE to BLINK_FROM_HERE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 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/testing/PlatformSpeechSynthesizerMock.cpp
diff --git a/third_party/WebKit/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp b/third_party/WebKit/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
index f078f42fa362512a7dcff2ac821a36901bd50576..a5147249168a89bf4b329d619fc932340efb5a41 100644
--- a/third_party/WebKit/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
+++ b/third_party/WebKit/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.cpp
@@ -106,7 +106,7 @@ void PlatformSpeechSynthesizerMock::speakNow()
client()->boundaryEventOccurred(m_currentUtterance, SpeechSentenceBoundary, m_currentUtterance->text().length());
// Give the fake speech job some time so that pause and other functions have time to be called.
- m_speakingFinishedTimer.startOneShot(.1, FROM_HERE);
+ m_speakingFinishedTimer.startOneShot(.1, BLINK_FROM_HERE);
}
void PlatformSpeechSynthesizerMock::cancel()
@@ -118,7 +118,7 @@ void PlatformSpeechSynthesizerMock::cancel()
m_queuedUtterances.clear();
m_speakingFinishedTimer.stop();
- m_speakingErrorOccurredTimer.startOneShot(.1, FROM_HERE);
+ m_speakingErrorOccurredTimer.startOneShot(.1, BLINK_FROM_HERE);
}
void PlatformSpeechSynthesizerMock::pause()

Powered by Google App Engine
This is Rietveld 408576698