Remove DCHECK from common_types.cc
The DCHECKs added in https://webrtc-codereview.appspot.com/41069004/ introduces a dependency on base, which may cause problems. This CL reverts that change. R=tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/48389004 Cr-Commit-Position: refs/heads/master@{#8602} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8602 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
4a4e688438
commit
7b93ea1667
@ -12,19 +12,11 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "webrtc/base/checks.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
int InStream::Rewind() {
|
||||
DCHECK(false);
|
||||
return -1;
|
||||
}
|
||||
int InStream::Rewind() { return -1; }
|
||||
|
||||
int OutStream::Rewind() {
|
||||
DCHECK(false);
|
||||
return -1;
|
||||
}
|
||||
int OutStream::Rewind() { return -1; }
|
||||
|
||||
StreamDataCounters::StreamDataCounters() : first_packet_time_ms(-1) {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user