Chromium Code Reviews| Index: webrtc/p2p/client/httpportallocator.cc |
| diff --git a/webrtc/p2p/client/httpportallocator.cc b/webrtc/p2p/client/httpportallocator.cc |
| index c072da27e154768bf92c1e7cf2419b96bcfb6d62..7718366df64a445d13d3ab74a3e6ffd969a2d09d 100644 |
| --- a/webrtc/p2p/client/httpportallocator.cc |
| +++ b/webrtc/p2p/client/httpportallocator.cc |
| @@ -168,7 +168,7 @@ void HttpPortAllocatorSessionBase::TryCreateRelaySession() { |
| std::string HttpPortAllocatorSessionBase::GetSessionRequestUrl() { |
| std::string url = std::string(HttpPortAllocator::kCreateSessionURL); |
| - if (allocator()->flags() & PORTALLOCATOR_ENABLE_SHARED_UFRAG) { |
| + if (allocator()->flags()) { |
|
Taylor Brandstetter
2015/07/28 23:57:03
If shared ufrag is always enabled, we should just
pthatcher1
2015/07/29 17:29:26
Yeah. Hopefully, that's my "yeah duh" moment for
|
| ASSERT(!username().empty()); |
| ASSERT(!password().empty()); |
| url = url + "?username=" + rtc::s_url_encode(username()) + |