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

Unified Diff: Source/platform/exported/WebRTCConfiguration.cpp

Issue 1315413004: Enable generation of local host candidate. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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: Source/platform/exported/WebRTCConfiguration.cpp
diff --git a/Source/platform/exported/WebRTCConfiguration.cpp b/Source/platform/exported/WebRTCConfiguration.cpp
index df1150dee6d2346b1bffd8539b4cc645ac59e5bc..1204029b57821f4962a47cb325f7ee4ac5ab7172 100644
--- a/Source/platform/exported/WebRTCConfiguration.cpp
+++ b/Source/platform/exported/WebRTCConfiguration.cpp
@@ -144,4 +144,10 @@ WebRTCRtcpMuxPolicy WebRTCConfiguration::rtcpMuxPolicy() const
return WebRTCRtcpMuxPolicyNegotiate;
}
+bool WebRTCConfiguration::enableLocalhostCandidate() const
+{
+ ASSERT(!isNull());
+ return m_private->enableLocalhostCandidate();
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698