summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorenal@chromium.org <enal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-09 17:23:16 +0000
committerenal@chromium.org <enal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-09 17:23:16 +0000
commit1d6a8630da7780da6c26349925c94a6a17eb4be9 (patch)
treeb79b5c5564119f038d8626b12fae7c2a7560f0a0 /media
parentf64d7a352dd29bb7bc386fc1e829a764cdc9f64e (diff)
downloadchromium_src-1d6a8630da7780da6c26349925c94a6a17eb4be9.zip
chromium_src-1d6a8630da7780da6c26349925c94a6a17eb4be9.tar.gz
chromium_src-1d6a8630da7780da6c26349925c94a6a17eb4be9.tar.bz2
Replace CHECK by DCHECK, at least for M20.
Hopefully we'll be able to find out what causes the problem looking at the crashes (if any). BUG=123322 TEST=Crash in media::AudioManagerBase::ShutdownOnAudioThread() should go away. Review URL: https://chromiumcodereview.appspot.com/10383066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136056 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r--media/audio/audio_manager_base.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/audio/audio_manager_base.cc b/media/audio/audio_manager_base.cc
index a0c1c4c..404cf90 100644
--- a/media/audio/audio_manager_base.cc
+++ b/media/audio/audio_manager_base.cc
@@ -231,7 +231,7 @@ void AudioManagerBase::ShutdownOnAudioThread() {
// both physical audio stream objects that belong to the dispatcher as
// well as the message loop of the audio thread that will soon go away.
// So, better crash now than later.
- CHECK(dispatcher->HasOneRef()) << "AudioOutputProxies are still alive";
+ DCHECK(dispatcher->HasOneRef()) << "AudioOutputProxies are still alive";
dispatcher = NULL;
}
}