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 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef RTCPeerConnection_h | 31 #ifndef RTCPeerConnection_h |
32 #define RTCPeerConnection_h | 32 #define RTCPeerConnection_h |
33 | 33 |
34 #include <memory> | 34 #include <memory> |
35 #include "bindings/core/v8/ActiveScriptWrappable.h" | |
36 #include "bindings/core/v8/ScriptPromise.h" | 35 #include "bindings/core/v8/ScriptPromise.h" |
37 #include "core/dom/SuspendableObject.h" | 36 #include "core/dom/SuspendableObject.h" |
38 #include "modules/EventTargetModules.h" | 37 #include "modules/EventTargetModules.h" |
39 #include "modules/crypto/NormalizeAlgorithm.h" | 38 #include "modules/crypto/NormalizeAlgorithm.h" |
40 #include "modules/mediastream/MediaStream.h" | 39 #include "modules/mediastream/MediaStream.h" |
41 #include "modules/peerconnection/RTCIceCandidate.h" | 40 #include "modules/peerconnection/RTCIceCandidate.h" |
42 #include "platform/AsyncMethodRunner.h" | 41 #include "platform/AsyncMethodRunner.h" |
43 #include "platform/WebFrameScheduler.h" | 42 #include "platform/WebFrameScheduler.h" |
| 43 #include "platform/bindings/ActiveScriptWrappable.h" |
44 #include "platform/heap/HeapAllocator.h" | 44 #include "platform/heap/HeapAllocator.h" |
45 #include "public/platform/WebMediaConstraints.h" | 45 #include "public/platform/WebMediaConstraints.h" |
46 #include "public/platform/WebRTCPeerConnectionHandler.h" | 46 #include "public/platform/WebRTCPeerConnectionHandler.h" |
47 #include "public/platform/WebRTCPeerConnectionHandlerClient.h" | 47 #include "public/platform/WebRTCPeerConnectionHandlerClient.h" |
48 | 48 |
49 namespace blink { | 49 namespace blink { |
50 class ExceptionState; | 50 class ExceptionState; |
51 class MediaStreamTrack; | 51 class MediaStreamTrack; |
52 class RTCAnswerOptions; | 52 class RTCAnswerOptions; |
53 class RTCConfiguration; | 53 class RTCConfiguration; |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 | 273 |
274 bool stopped_; | 274 bool stopped_; |
275 bool closed_; | 275 bool closed_; |
276 | 276 |
277 bool has_data_channels_; // For RAPPOR metrics | 277 bool has_data_channels_; // For RAPPOR metrics |
278 }; | 278 }; |
279 | 279 |
280 } // namespace blink | 280 } // namespace blink |
281 | 281 |
282 #endif // RTCPeerConnection_h | 282 #endif // RTCPeerConnection_h |
OLD | NEW |