Index: webrtc/pc/channel.cc |
diff --git a/webrtc/pc/channel.cc b/webrtc/pc/channel.cc |
index a03b46df164ff7afc70e28e7bbe7ca3a5bc31aac..65b05857285005a0852f43a7c7dbc18de27635fd 100644 |
--- a/webrtc/pc/channel.cc |
+++ b/webrtc/pc/channel.cc |
@@ -1307,8 +1307,8 @@ bool BaseChannel::RemoveRecvStream_w(uint32_t ssrc) { |
bool BaseChannel::UpdateLocalStreams_w(const std::vector<StreamParams>& streams, |
ContentAction action, |
std::string* error_desc) { |
- if (!VERIFY(action == CA_OFFER || action == CA_ANSWER || |
- action == CA_PRANSWER || action == CA_UPDATE)) |
+ if (!(action == CA_OFFER || action == CA_ANSWER || |
+ action == CA_PRANSWER || action == CA_UPDATE)) |
return false; |
// If this is an update, streams only contain streams that have changed. |
@@ -1380,8 +1380,8 @@ bool BaseChannel::UpdateRemoteStreams_w( |
const std::vector<StreamParams>& streams, |
ContentAction action, |
std::string* error_desc) { |
- if (!VERIFY(action == CA_OFFER || action == CA_ANSWER || |
- action == CA_PRANSWER || action == CA_UPDATE)) |
+ if (!(action == CA_OFFER || action == CA_ANSWER || |
+ action == CA_PRANSWER || action == CA_UPDATE)) |
return false; |
// If this is an update, streams only contain streams that have changed. |