OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 27 matching lines...) Expand all Loading... |
38 #import "RTCMediaConstraints+Internal.h" | 38 #import "RTCMediaConstraints+Internal.h" |
39 #import "RTCMediaStream+Internal.h" | 39 #import "RTCMediaStream+Internal.h" |
40 #import "RTCMediaStreamTrack+Internal.h" | 40 #import "RTCMediaStreamTrack+Internal.h" |
41 #import "RTCPeerConnectionObserver.h" | 41 #import "RTCPeerConnectionObserver.h" |
42 #import "RTCSessionDescription+Internal.h" | 42 #import "RTCSessionDescription+Internal.h" |
43 #import "RTCSessionDescription.h" | 43 #import "RTCSessionDescription.h" |
44 #import "RTCSessionDescriptionDelegate.h" | 44 #import "RTCSessionDescriptionDelegate.h" |
45 #import "RTCStatsDelegate.h" | 45 #import "RTCStatsDelegate.h" |
46 #import "RTCStatsReport+Internal.h" | 46 #import "RTCStatsReport+Internal.h" |
47 | 47 |
48 #include "talk/app/webrtc/jsep.h" | 48 #include "webrtc/api/jsep.h" |
49 | 49 |
50 NSString* const kRTCSessionDescriptionDelegateErrorDomain = @"RTCSDPError"; | 50 NSString* const kRTCSessionDescriptionDelegateErrorDomain = @"RTCSDPError"; |
51 int const kRTCSessionDescriptionDelegateErrorCode = -1; | 51 int const kRTCSessionDescriptionDelegateErrorCode = -1; |
52 | 52 |
53 namespace webrtc { | 53 namespace webrtc { |
54 | 54 |
55 class RTCCreateSessionDescriptionObserver | 55 class RTCCreateSessionDescriptionObserver |
56 : public CreateSessionDescriptionObserver { | 56 : public CreateSessionDescriptionObserver { |
57 public: | 57 public: |
58 RTCCreateSessionDescriptionObserver( | 58 RTCCreateSessionDescriptionObserver( |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 _delegate = delegate; | 296 _delegate = delegate; |
297 } | 297 } |
298 return self; | 298 return self; |
299 } | 299 } |
300 | 300 |
301 - (rtc::scoped_refptr<webrtc::PeerConnectionInterface>)peerConnection { | 301 - (rtc::scoped_refptr<webrtc::PeerConnectionInterface>)peerConnection { |
302 return _peerConnection; | 302 return _peerConnection; |
303 } | 303 } |
304 | 304 |
305 @end | 305 @end |
OLD | NEW |