OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 108 |
109 BLINK_PLATFORM_EXPORT size_t numberOfServers() const; | 109 BLINK_PLATFORM_EXPORT size_t numberOfServers() const; |
110 BLINK_PLATFORM_EXPORT WebRTCICEServer server(size_t index) const; | 110 BLINK_PLATFORM_EXPORT WebRTCICEServer server(size_t index) const; |
111 | 111 |
112 BLINK_PLATFORM_EXPORT WebRTCIceTransports iceTransports() const; | 112 BLINK_PLATFORM_EXPORT WebRTCIceTransports iceTransports() const; |
113 | 113 |
114 BLINK_PLATFORM_EXPORT WebRTCBundlePolicy bundlePolicy() const; | 114 BLINK_PLATFORM_EXPORT WebRTCBundlePolicy bundlePolicy() const; |
115 | 115 |
116 BLINK_PLATFORM_EXPORT WebRTCRtcpMuxPolicy rtcpMuxPolicy() const; | 116 BLINK_PLATFORM_EXPORT WebRTCRtcpMuxPolicy rtcpMuxPolicy() const; |
117 | 117 |
| 118 BLINK_PLATFORM_EXPORT bool enableLocalhostCandidate() const; |
| 119 |
118 #if INSIDE_BLINK | 120 #if INSIDE_BLINK |
119 BLINK_PLATFORM_EXPORT WebRTCConfiguration(RTCConfiguration*); | 121 BLINK_PLATFORM_EXPORT WebRTCConfiguration(RTCConfiguration*); |
120 #endif | 122 #endif |
121 | 123 |
122 private: | 124 private: |
123 WebPrivatePtr<RTCConfiguration> m_private; | 125 WebPrivatePtr<RTCConfiguration> m_private; |
124 }; | 126 }; |
125 | 127 |
126 } // namespace blink | 128 } // namespace blink |
127 | 129 |
128 #endif // WebRTCConfiguration_h | 130 #endif // WebRTCConfiguration_h |
OLD | NEW |