Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Unified Diff: webrtc/p2p/client/httpportallocator.cc

Issue 1263663002: Remove GICE. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix tests Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()) +

Powered by Google App Engine
This is Rietveld 408576698