| 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
|
|
|