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

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

Issue 1353673002: Remove unused functions. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | public/platform/WebRTCConfiguration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebRTCConfiguration.cpp
diff --git a/Source/platform/exported/WebRTCConfiguration.cpp b/Source/platform/exported/WebRTCConfiguration.cpp
index 0a875aebbdc5e4ac10fb598764fc37dea2c3d93c..5b9b5f7808579e88d690154fcbd4fea7737eb54e 100644
--- a/Source/platform/exported/WebRTCConfiguration.cpp
+++ b/Source/platform/exported/WebRTCConfiguration.cpp
@@ -113,23 +113,6 @@ void WebRTCConfiguration::reset()
m_private.reset();
}
-// TODO(guoweis): Remove this function when WebKit rolls into Chromium.
-size_t WebRTCConfiguration::numberOfServers() const
-{
- ASSERT(!isNull());
- if (!m_private->iceServers()) {
- return 0;
- }
- return m_private->iceServers()->numberOfServers();
-}
-
-// TODO(guoweis): Remove this function when WebKit rolls into Chromium.
-WebRTCICEServer WebRTCConfiguration::server(size_t index) const
-{
- ASSERT(!isNull());
- return WebRTCICEServer(m_private->iceServers()->server(index));
-}
-
WebRTCIceTransports WebRTCConfiguration::iceTransports() const
{
ASSERT(!isNull());
« no previous file with comments | « no previous file | public/platform/WebRTCConfiguration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698