| 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "modules/peerconnection/RTCPeerConnection.h" | 31 #include "modules/peerconnection/RTCPeerConnection.h" |
| 32 | 32 |
| 33 #include <algorithm> | 33 #include <algorithm> |
| 34 #include <memory> | 34 #include <memory> |
| 35 #include <set> | 35 #include <set> |
| 36 #include "bindings/core/v8/ExceptionMessages.h" | 36 #include "bindings/core/v8/ExceptionMessages.h" |
| 37 #include "bindings/core/v8/ExceptionState.h" | 37 #include "bindings/core/v8/ExceptionState.h" |
| 38 #include "bindings/core/v8/Microtask.h" | |
| 39 #include "bindings/core/v8/Nullable.h" | 38 #include "bindings/core/v8/Nullable.h" |
| 40 #include "bindings/core/v8/ScriptPromiseResolver.h" | 39 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 41 #include "bindings/core/v8/ScriptState.h" | 40 #include "bindings/core/v8/ScriptState.h" |
| 42 #include "bindings/core/v8/ScriptValue.h" | 41 #include "bindings/core/v8/ScriptValue.h" |
| 43 #include "bindings/core/v8/V8ThrowException.h" | 42 #include "bindings/core/v8/V8ThrowException.h" |
| 44 #include "bindings/modules/v8/RTCIceCandidateInitOrRTCIceCandidate.h" | 43 #include "bindings/modules/v8/RTCIceCandidateInitOrRTCIceCandidate.h" |
| 45 #include "bindings/modules/v8/V8MediaStreamTrack.h" | 44 #include "bindings/modules/v8/V8MediaStreamTrack.h" |
| 46 #include "bindings/modules/v8/V8RTCCertificate.h" | 45 #include "bindings/modules/v8/V8RTCCertificate.h" |
| 47 #include "core/dom/DOMException.h" | 46 #include "core/dom/DOMException.h" |
| 48 #include "core/dom/DOMTimeStamp.h" | 47 #include "core/dom/DOMTimeStamp.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 74 #include "modules/peerconnection/RTCSessionDescriptionCallback.h" | 73 #include "modules/peerconnection/RTCSessionDescriptionCallback.h" |
| 75 #include "modules/peerconnection/RTCSessionDescriptionInit.h" | 74 #include "modules/peerconnection/RTCSessionDescriptionInit.h" |
| 76 #include "modules/peerconnection/RTCSessionDescriptionRequestImpl.h" | 75 #include "modules/peerconnection/RTCSessionDescriptionRequestImpl.h" |
| 77 #include "modules/peerconnection/RTCSessionDescriptionRequestPromiseImpl.h" | 76 #include "modules/peerconnection/RTCSessionDescriptionRequestPromiseImpl.h" |
| 78 #include "modules/peerconnection/RTCStatsCallback.h" | 77 #include "modules/peerconnection/RTCStatsCallback.h" |
| 79 #include "modules/peerconnection/RTCStatsReport.h" | 78 #include "modules/peerconnection/RTCStatsReport.h" |
| 80 #include "modules/peerconnection/RTCStatsRequestImpl.h" | 79 #include "modules/peerconnection/RTCStatsRequestImpl.h" |
| 81 #include "modules/peerconnection/RTCVoidRequestImpl.h" | 80 #include "modules/peerconnection/RTCVoidRequestImpl.h" |
| 82 #include "modules/peerconnection/RTCVoidRequestPromiseImpl.h" | 81 #include "modules/peerconnection/RTCVoidRequestPromiseImpl.h" |
| 83 #include "platform/RuntimeEnabledFeatures.h" | 82 #include "platform/RuntimeEnabledFeatures.h" |
| 83 #include "platform/bindings/Microtask.h" |
| 84 #include "platform/peerconnection/RTCAnswerOptionsPlatform.h" | 84 #include "platform/peerconnection/RTCAnswerOptionsPlatform.h" |
| 85 #include "platform/peerconnection/RTCOfferOptionsPlatform.h" | 85 #include "platform/peerconnection/RTCOfferOptionsPlatform.h" |
| 86 #include "platform/wtf/CurrentTime.h" | 86 #include "platform/wtf/CurrentTime.h" |
| 87 #include "platform/wtf/PtrUtil.h" | 87 #include "platform/wtf/PtrUtil.h" |
| 88 #include "public/platform/Platform.h" | 88 #include "public/platform/Platform.h" |
| 89 #include "public/platform/WebCryptoAlgorithmParams.h" | 89 #include "public/platform/WebCryptoAlgorithmParams.h" |
| 90 #include "public/platform/WebMediaStream.h" | 90 #include "public/platform/WebMediaStream.h" |
| 91 #include "public/platform/WebRTCAnswerOptions.h" | 91 #include "public/platform/WebRTCAnswerOptions.h" |
| 92 #include "public/platform/WebRTCCertificate.h" | 92 #include "public/platform/WebRTCCertificate.h" |
| 93 #include "public/platform/WebRTCCertificateGenerator.h" | 93 #include "public/platform/WebRTCCertificateGenerator.h" |
| (...skipping 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1553 visitor->Trace(local_streams_); | 1553 visitor->Trace(local_streams_); |
| 1554 visitor->Trace(remote_streams_); | 1554 visitor->Trace(remote_streams_); |
| 1555 visitor->Trace(rtp_receivers_); | 1555 visitor->Trace(rtp_receivers_); |
| 1556 visitor->Trace(dispatch_scheduled_event_runner_); | 1556 visitor->Trace(dispatch_scheduled_event_runner_); |
| 1557 visitor->Trace(scheduled_events_); | 1557 visitor->Trace(scheduled_events_); |
| 1558 EventTargetWithInlineData::Trace(visitor); | 1558 EventTargetWithInlineData::Trace(visitor); |
| 1559 SuspendableObject::Trace(visitor); | 1559 SuspendableObject::Trace(visitor); |
| 1560 } | 1560 } |
| 1561 | 1561 |
| 1562 } // namespace blink | 1562 } // namespace blink |
| OLD | NEW |