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

Unified Diff: talk/app/webrtc/videosource.cc

Issue 1461513003: Temporarily disable VERIFY while bug is investigated. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 1 month 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: talk/app/webrtc/videosource.cc
diff --git a/talk/app/webrtc/videosource.cc b/talk/app/webrtc/videosource.cc
index 4e27b438a1b6af364ed2f8630d384039eaa60790..e8a19e06fd974353c3fa218ad4da30914addebd1 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(phoglund): Temporarily disabled VERIFY due to issue 4776.
perkj_webrtc 2015/11/18 15:12:20 TODO(hbos) ? webrtc:4776
phoglund 2015/11/18 15:27:27 Done.
hbos 2015/11/18 15:29:13 Yeah, assign it to me.
+ // if (VERIFY(state_ != new_state)) {
+ if (state_ != new_state) {
state_ = new_state;
FireOnChanged();
}
« 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