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

Unified Diff: media/audio/mac/audio_output_mac.cc

Issue 9959137: Replace NOTREACHED() with LOG(ERROR) in PCMQueueOutAudioOutputStream::HandleError(). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: Created 8 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/mac/audio_output_mac.cc
diff --git a/media/audio/mac/audio_output_mac.cc b/media/audio/mac/audio_output_mac.cc
index 06fc26fda67bf606ef452d53dc60c5bf0a52b975..8328a0111311ca86e1ed4d662c9bf43b562dfcf5 100644
--- a/media/audio/mac/audio_output_mac.cc
+++ b/media/audio/mac/audio_output_mac.cc
@@ -98,8 +98,8 @@ void PCMQueueOutAudioOutputStream::HandleError(OSStatus err) {
AudioSourceCallback* source = GetSource();
if (source)
source->OnError(this, static_cast<int>(err));
- NOTREACHED() << "error " << GetMacOSStatusErrorString(err)
- << " (" << err << ")";
+ LOG(ERROR) << "error " << GetMacOSStatusErrorString(err)
+ << " (" << err << ")";
}
bool PCMQueueOutAudioOutputStream::Open() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698