aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/rtcpeerconnection.rs
Commit message (Collapse)AuthorAgeFilesLines
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-20/+19
| | | | | * strict imports formatting * Reformat all imports
* No tracing of nop traceable fields (#29926)Samson2023-08-041-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add `no_trace` option to JSTraceable derive * NoTrace wrapper * Port some types to no_trace schematics * Fixing my unsafe mistakes (not tracing traceables) * Add docs & safety guards for no_trace Safety guards (trait shenanigans) guarantees safety usage of `no_trace` * Port canvas_traits to no_trace * Port servo_media to no_trace * Port net_traits to no_trace * Port style to no_trace * Port webgpu to no_trace * Port script_traits to no_trace * Port canvas_traits, devtools_traits, embedder_traits, profile_traits to no_trace * unrooted_must_root lint in seperate file * Add trace_in_no_trace_lint as script_plugin * Composable types in must_not_have_traceable * Introduced HashMapTracedValues wrapper * `HashMap<NoTrace<K>,V>`->`HashMapTracedValues<K,V>` * Port rest of servo's types to no_trace * Port html5ever, euclid, mime and http to no_trace * Port remaining externals to no_trace * Port webxr and Arc<Mutex<_>> * Fix spelling in notrace doc
* Rename reflect_dom_object2.Josh Matthews2023-05-311-2/+6
|
* Formatting.Josh Matthews2023-05-281-7/+27
|
* Support arbitrary protos when wrapping DOM objects with constructors.Josh Matthews2023-05-281-7/+8
|
* Remove global argument from Promise::new_in_current_realm.Josh Matthews2023-05-201-5/+5
|
* dom: Add WebRTC transceiver stubs.Josh Matthews2020-07-141-2/+12
|
* Fix rooting issueFernando Jiménez Moreno2020-06-291-3/+8
|
* Fix data channels borrowing errorsFernando Jiménez Moreno2020-06-291-9/+12
|
* Do not register data channel twiceFernando Jiménez Moreno2020-06-291-4/+2
|
* Set data channels as closed on peer connection closeFernando Jiménez Moreno2020-06-291-4/+8
|
* RTCDataChannel.readyState getterFernando Jiménez Moreno2020-06-291-1/+2
|
* Use data channel idsFernando Jiménez Moreno2020-06-291-18/+72
|
* Cleanups and tidy fixesFernando Jiménez Moreno2020-06-291-8/+2
|
* Implement ondatachannel eventFernando Jiménez Moreno2020-06-291-2/+39
|
* WebRTCDataChannel initial supportFernando Jiménez Moreno2020-06-291-0/+15
|
* Add trait DomObjectWrap to provide WRAP functionYUAN LYU2020-03-201-6/+1
|
* Update to 3/4 nightly rustc.Josh Matthews2020-03-101-8/+8
|
* Revert "Auto merge of #25898 - jdm:rustup, r=asajeffrey"Josh Matthews2020-03-061-8/+8
| | | | | This reverts commit ea8aed1ba927012d992a3d3c9880858e0282f5f9, reversing changes made to 3749eb53971b688b855d6b1850f41b4c346cd2da.
* Update to 3/4 nightly rustc.Josh Matthews2020-03-041-8/+8
|
* rename compartment to realmKunal Mohan2020-01-241-19/+11
|
* Modify `script` to prevent further violations of snake_caseKunal Mohan2020-01-181-0/+1
|
* Fix some new warningsSimon Sapin2019-06-221-1/+1
|
* Use the newly added inCompartments option everywhere it can beBastien Orivel2019-05-251-31/+19
|
* Add RTCPeerConnection.ontrackManish Goregaokar2019-05-081-1/+25
|
* Use MediaStreamTracks in MediaStreamsManish Goregaokar2019-05-071-4/+6
|
* Update servo-mediaManish Goregaokar2019-05-071-1/+2
|
* Pass InCompartment by valueAron Zwaan2019-04-251-5/+5
|
* Add proof parameter to Promise::new_in_current_compartmentAron Zwaan2019-04-241-10/+26
|
* Move media backend initialization to process startup.Josh Matthews2019-04-151-2/+0
|
* Auto merge of #23157 - ferjm:gum.playback, r=Manishearthbors-servo2019-04-131-3/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | MediaStream playback through audio and video elements - [X] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] There are tests for these changes <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23157) <!-- Reviewable:end -->
| * MediaStream playback through audio and video elementsFernando Jiménez Moreno2019-04-101-3/+3
| |
* | Rename Promise::new to Promise::new_in_current_compartmentAron Zwaan2019-04-031-5/+10
|/
* Add RTCPeerConnection::CloseManish Goregaokar2019-03-251-0/+25
|
* Add SignalingState to RTCPeerConnectionManish Goregaokar2019-03-251-2/+62
|
* Add ICEConnectionState to RTCPeerConnectionManish Goregaokar2019-03-251-5/+63
|
* Add ICEGatheringState to RTCPeerConnectionManish Goregaokar2019-03-251-2/+88
|
* Use servo-media-auto and call ServoMedia::init where requiredFernando Jiménez Moreno2019-03-251-0/+2
|
* Update servo-mediaManish Goregaokar2019-02-131-1/+1
|
* Use draft spec linksManish Goregaokar2019-01-291-10/+10
|
* Configure STUN serversManish Goregaokar2019-01-291-11/+28
|
* Add RTCPeerConnection::AddStreamManish Goregaokar2019-01-291-0/+10
|
* Add RTCPeerConnection::SetRemoteDescriptionManish Goregaokar2019-01-291-0/+41
|
* Add RTCPeerConnection::SetLocalDescriptionManish Goregaokar2019-01-291-2/+57
|
* Add createAnswerManish Goregaokar2019-01-291-6/+56
|
* Add createOferManish Goregaokar2019-01-291-8/+83
|
* Add RTCPeerConnection::AddIceCandidateManish Goregaokar2019-01-291-0/+35
|
* Fire negotiationneeded and icecandidate eventsManish Goregaokar2019-01-291-4/+52
|
* Add RTCPeerConnectionIceEventManish Goregaokar2019-01-291-0/+4
|
* Fill in some of RTCPeerConnection, add signallerManish Goregaokar2019-01-281-2/+75
|