| Index: talk/app/webrtc/videosource.cc
|
| diff --git a/talk/app/webrtc/videosource.cc b/talk/app/webrtc/videosource.cc
|
| index 4e27b438a1b6af364ed2f8630d384039eaa60790..5cef7be6a2c4fa71f25301a1b63454b9e73d03c0 100644
|
| --- a/talk/app/webrtc/videosource.cc
|
| +++ b/talk/app/webrtc/videosource.cc
|
| @@ -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();
|
| }
|
|
|