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

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

Issue 1311853005: RTCCertificate and RTCPeerConnection.generateCertificate added to JavaScript (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Chromium implementation of Blink interfaces. Addressed comments. 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
Index: third_party/WebKit/Source/platform/exported/WebRTCConfiguration.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebRTCConfiguration.cpp b/third_party/WebKit/Source/platform/exported/WebRTCConfiguration.cpp
index 5b9b5f7808579e88d690154fcbd4fea7737eb54e..a6bb72ea70bfd52756ddbabc454cc5edaf083650 100644
--- a/third_party/WebKit/Source/platform/exported/WebRTCConfiguration.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebRTCConfiguration.cpp
@@ -165,4 +165,14 @@ WebRTCICEServerArray WebRTCConfiguration::iceServers() const
return WebRTCICEServerArray(m_private->iceServers());
}
+size_t WebRTCConfiguration::numberOfCertificates() const
+{
+ return m_private->numberOfCertificates();
+}
+
+WebRTCCertificate* WebRTCConfiguration::certificate(size_t index) const
+{
+ return m_private->certificate(index);
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698