Index: webrtc/p2p/base/portallocator.cc |
diff --git a/webrtc/p2p/base/portallocator.cc b/webrtc/p2p/base/portallocator.cc |
index b97ad554d6cf1a05ec5b888cb5dd6524568684f0..76455b506e220ad8e3d188b827111ca19e7b12e3 100644 |
--- a/webrtc/p2p/base/portallocator.cc |
+++ b/webrtc/p2p/base/portallocator.cc |
@@ -8,7 +8,6 @@ |
* be found in the AUTHORS file in the root of the source tree. |
*/ |
-#include "webrtc/base/checks.h" |
#include "webrtc/p2p/base/portallocator.h" |
namespace cricket { |
@@ -22,10 +21,8 @@ |
component_(component), |
flags_(flags), |
generation_(0), |
- ice_ufrag_(ice_ufrag), |
- ice_pwd_(ice_pwd) { |
- RTC_DCHECK(!ice_ufrag.empty()); |
- RTC_DCHECK(!ice_pwd.empty()); |
+ username_(ice_ufrag), |
+ password_(ice_pwd) { |
} |
PortAllocatorSession* PortAllocator::CreateSession( |