| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2015 Google Inc. All rights reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions | |
| 6 * are met: | |
| 7 * | |
| 8 * 1. Redistributions of source code must retain the above copyright | |
| 9 * notice, this list of conditions and the following disclaimer. | |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | |
| 11 * notice, this list of conditions and the following disclaimer | |
| 12 * in the documentation and/or other materials provided with the | |
| 13 * distribution. | |
| 14 * 3. Neither the name of Google Inc. nor the names of its contributors | |
| 15 * may be used to endorse or promote products derived from this | |
| 16 * software without specific prior written permission. | |
| 17 * | |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 29 */ | |
| 30 | |
| 31 #ifndef RTCConfiguration_h | |
| 32 #define RTCConfiguration_h | |
| 33 | |
| 34 #include "platform/heap/Handle.h" | |
| 35 #include "platform/weborigin/KURL.h" | |
| 36 #include "public/platform/WebRTCCertificate.h" | |
| 37 #include "wtf/PassRefPtr.h" | |
| 38 #include "wtf/PtrUtil.h" | |
| 39 #include "wtf/Vector.h" | |
| 40 #include "wtf/text/WTFString.h" | |
| 41 #include <memory> | |
| 42 | |
| 43 namespace blink { | |
| 44 | |
| 45 class RTCIceServer final : public GarbageCollectedFinalized<RTCIceServer> { | |
| 46 public: | |
| 47 static RTCIceServer* create(const KURL& uri, const String& username, const S
tring& credential) | |
| 48 { | |
| 49 return new RTCIceServer(uri, username, credential); | |
| 50 } | |
| 51 | |
| 52 const KURL& uri() { return m_uri; } | |
| 53 const String& username() { return m_username; } | |
| 54 const String& credential() { return m_credential; } | |
| 55 | |
| 56 DEFINE_INLINE_TRACE() { } | |
| 57 | |
| 58 private: | |
| 59 RTCIceServer(const KURL& uri, const String& username, const String& credenti
al) | |
| 60 : m_uri(uri) | |
| 61 , m_username(username) | |
| 62 , m_credential(credential) | |
| 63 { | |
| 64 } | |
| 65 | |
| 66 KURL m_uri; | |
| 67 String m_username; | |
| 68 String m_credential; | |
| 69 }; | |
| 70 | |
| 71 enum RTCIceTransports { | |
| 72 RTCIceTransportsNone, | |
| 73 RTCIceTransportsRelay, | |
| 74 RTCIceTransportsAll | |
| 75 }; | |
| 76 | |
| 77 enum RTCBundlePolicy { | |
| 78 RTCBundlePolicyBalanced, | |
| 79 RTCBundlePolicyMaxCompat, | |
| 80 RTCBundlePolicyMaxBundle | |
| 81 }; | |
| 82 | |
| 83 enum RTCRtcpMuxPolicy { | |
| 84 RTCRtcpMuxPolicyNegotiate, | |
| 85 RTCRtcpMuxPolicyRequire | |
| 86 }; | |
| 87 | |
| 88 class PLATFORM_EXPORT RTCConfiguration final : public GarbageCollectedFinalized<
RTCConfiguration> { | |
| 89 public: | |
| 90 static RTCConfiguration* create() { return new RTCConfiguration(); } | |
| 91 void appendServer(RTCIceServer* server) { m_servers.append(server); } | |
| 92 size_t numberOfServers() { return m_servers.size(); } | |
| 93 RTCIceServer* server(size_t index) { return m_servers[index].get(); } | |
| 94 | |
| 95 void setIceTransports(RTCIceTransports iceTransports) { m_iceTransports = ic
eTransports; } | |
| 96 RTCIceTransports iceTransports() { return m_iceTransports; } | |
| 97 void setBundlePolicy(RTCBundlePolicy bundlePolicy) { m_bundlePolicy = bundle
Policy; } | |
| 98 RTCBundlePolicy bundlePolicy() { return m_bundlePolicy; } | |
| 99 void setRtcpMuxPolicy(RTCRtcpMuxPolicy rtcpMuxPolicy) { m_rtcpMuxPolicy = rt
cpMuxPolicy; } | |
| 100 RTCRtcpMuxPolicy rtcpMuxPolicy() { return m_rtcpMuxPolicy; } | |
| 101 | |
| 102 void appendCertificate(std::unique_ptr<WebRTCCertificate> certificate) { m_c
ertificates.append(wrapUnique(certificate.release())); } | |
| 103 size_t numberOfCertificates() const { return m_certificates.size(); } | |
| 104 WebRTCCertificate* certificate(size_t index) const { return m_certificates[i
ndex].get(); } | |
| 105 | |
| 106 DEFINE_INLINE_TRACE() { visitor->trace(m_servers); } | |
| 107 | |
| 108 private: | |
| 109 RTCConfiguration() : | |
| 110 m_iceTransports(RTCIceTransportsAll), | |
| 111 m_bundlePolicy(RTCBundlePolicyBalanced), | |
| 112 m_rtcpMuxPolicy(RTCRtcpMuxPolicyNegotiate) { } | |
| 113 | |
| 114 HeapVector<Member<RTCIceServer>> m_servers; | |
| 115 RTCIceTransports m_iceTransports; | |
| 116 RTCBundlePolicy m_bundlePolicy; | |
| 117 RTCRtcpMuxPolicy m_rtcpMuxPolicy; | |
| 118 Vector<std::unique_ptr<WebRTCCertificate>> m_certificates; | |
| 119 }; | |
| 120 | |
| 121 } // namespace blink | |
| 122 | |
| 123 #endif // RTCConfiguration_h | |
| OLD | NEW |