Temporarily disable VERIFY while bug is investigated.

This breaks some client apps in annoying ways, so disable for now.

BUG=webrtc:4776

Review URL: https://codereview.webrtc.org/1461513003

Cr-Commit-Position: refs/heads/master@{#10693}
This commit is contained in:
phoglund 2015-11-18 09:54:55 -08:00 committed by Commit bot
parent 223692aa85
commit 4dd7a653b5

View File

@ -462,7 +462,9 @@ void VideoSource::OnStateChange(cricket::VideoCapturer* capturer,
}
void VideoSource::SetState(SourceState new_state) {
if (VERIFY(state_ != new_state)) {
// TODO(hbos): Temporarily disabled VERIFY due to webrtc:4776.
// if (VERIFY(state_ != new_state)) {
if (state_ != new_state) {
state_ = new_state;
FireOnChanged();
}