| Index: webrtc/base/virtualsocketserver.cc
|
| diff --git a/webrtc/base/virtualsocketserver.cc b/webrtc/base/virtualsocketserver.cc
|
| index a9ca98bf81490c07279006174c27851aa93453de..4568bf239a70765c693ec7bd7f0f351e4f9b33c5 100644
|
| --- a/webrtc/base/virtualsocketserver.cc
|
| +++ b/webrtc/base/virtualsocketserver.cc
|
| @@ -1115,7 +1115,7 @@ IPAddress VirtualSocketServer::GetDefaultRoute(int family) {
|
| return IPAddress();
|
| }
|
| void VirtualSocketServer::SetDefaultRoute(const IPAddress& from_addr) {
|
| - DCHECK(!IPIsAny(from_addr));
|
| + RTC_DCHECK(!IPIsAny(from_addr));
|
| if (from_addr.family() == AF_INET) {
|
| default_route_v4_ = from_addr;
|
| } else if (from_addr.family() == AF_INET6) {
|
|
|