Index: content/browser/renderer_host/media/audio_input_sync_writer.cc |
diff --git a/content/browser/renderer_host/media/audio_input_sync_writer.cc b/content/browser/renderer_host/media/audio_input_sync_writer.cc |
index 6a78f6cc784aad4f4689d22f743ff71308e30784..6babb49790bc2f7c8d90ba205dd79c96d1b0ef0f 100644 |
--- a/content/browser/renderer_host/media/audio_input_sync_writer.cc |
+++ b/content/browser/renderer_host/media/audio_input_sync_writer.cc |
@@ -60,13 +60,13 @@ void AudioInputSyncWriter::Write(const media::AudioBus* data, |
if (last_write_time_.is_null()) { |
// This is the first time Write is called. |
base::TimeDelta interval = base::Time::Now() - creation_time_; |
- oss << "AISW::Write => audio input data received for the first time: delay " |
+ oss << "AISW::Write: audio input data received for the first time: delay " |
"= " << interval.InMilliseconds() << "ms"; |
} else { |
base::TimeDelta interval = base::Time::Now() - last_write_time_; |
if (interval > kLogDelayThreadhold) { |
- oss << "AISW::Write => audio input data delay unexpectedly long: delay = " |
+ oss << "AISW::Write: audio input data delay unexpectedly long: delay = " |
<< interval.InMilliseconds() << "ms"; |
} |
} |