| 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 20 matching lines...) Expand all Loading... |
| 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/Nullable.h" | 38 #include "bindings/core/v8/Nullable.h" |
| 39 #include "bindings/core/v8/ScriptPromiseResolver.h" | 39 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 40 #include "bindings/core/v8/ScriptValue.h" | 40 #include "bindings/core/v8/ScriptValue.h" |
| 41 #include "bindings/core/v8/V8ThrowException.h" | |
| 42 #include "bindings/modules/v8/RTCIceCandidateInitOrRTCIceCandidate.h" | 41 #include "bindings/modules/v8/RTCIceCandidateInitOrRTCIceCandidate.h" |
| 43 #include "bindings/modules/v8/V8MediaStreamTrack.h" | 42 #include "bindings/modules/v8/V8MediaStreamTrack.h" |
| 44 #include "bindings/modules/v8/V8RTCCertificate.h" | 43 #include "bindings/modules/v8/V8RTCCertificate.h" |
| 45 #include "core/dom/DOMException.h" | 44 #include "core/dom/DOMException.h" |
| 46 #include "core/dom/DOMTimeStamp.h" | 45 #include "core/dom/DOMTimeStamp.h" |
| 47 #include "core/dom/Document.h" | 46 #include "core/dom/Document.h" |
| 48 #include "core/dom/ExceptionCode.h" | 47 #include "core/dom/ExceptionCode.h" |
| 49 #include "core/dom/ExecutionContext.h" | 48 #include "core/dom/ExecutionContext.h" |
| 50 #include "core/frame/Deprecation.h" | 49 #include "core/frame/Deprecation.h" |
| 51 #include "core/frame/HostsUsingFeatures.h" | 50 #include "core/frame/HostsUsingFeatures.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 74 #include "modules/peerconnection/RTCSessionDescriptionRequestImpl.h" | 73 #include "modules/peerconnection/RTCSessionDescriptionRequestImpl.h" |
| 75 #include "modules/peerconnection/RTCSessionDescriptionRequestPromiseImpl.h" | 74 #include "modules/peerconnection/RTCSessionDescriptionRequestPromiseImpl.h" |
| 76 #include "modules/peerconnection/RTCStatsCallback.h" | 75 #include "modules/peerconnection/RTCStatsCallback.h" |
| 77 #include "modules/peerconnection/RTCStatsReport.h" | 76 #include "modules/peerconnection/RTCStatsReport.h" |
| 78 #include "modules/peerconnection/RTCStatsRequestImpl.h" | 77 #include "modules/peerconnection/RTCStatsRequestImpl.h" |
| 79 #include "modules/peerconnection/RTCVoidRequestImpl.h" | 78 #include "modules/peerconnection/RTCVoidRequestImpl.h" |
| 80 #include "modules/peerconnection/RTCVoidRequestPromiseImpl.h" | 79 #include "modules/peerconnection/RTCVoidRequestPromiseImpl.h" |
| 81 #include "platform/RuntimeEnabledFeatures.h" | 80 #include "platform/RuntimeEnabledFeatures.h" |
| 82 #include "platform/bindings/Microtask.h" | 81 #include "platform/bindings/Microtask.h" |
| 83 #include "platform/bindings/ScriptState.h" | 82 #include "platform/bindings/ScriptState.h" |
| 83 #include "platform/bindings/V8ThrowException.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 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1552 visitor->Trace(local_streams_); | 1552 visitor->Trace(local_streams_); |
| 1553 visitor->Trace(remote_streams_); | 1553 visitor->Trace(remote_streams_); |
| 1554 visitor->Trace(rtp_receivers_); | 1554 visitor->Trace(rtp_receivers_); |
| 1555 visitor->Trace(dispatch_scheduled_event_runner_); | 1555 visitor->Trace(dispatch_scheduled_event_runner_); |
| 1556 visitor->Trace(scheduled_events_); | 1556 visitor->Trace(scheduled_events_); |
| 1557 EventTargetWithInlineData::Trace(visitor); | 1557 EventTargetWithInlineData::Trace(visitor); |
| 1558 SuspendableObject::Trace(visitor); | 1558 SuspendableObject::Trace(visitor); |
| 1559 } | 1559 } |
| 1560 | 1560 |
| 1561 } // namespace blink | 1561 } // namespace blink |
| OLD | NEW |