Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: talk/app/webrtc/objc/RTCPeerConnection.mm

Issue 1610243002: Move talk/app/webrtc to webrtc/api (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removed processing of api.gyp for Chromium builds Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « talk/app/webrtc/objc/RTCMediaStreamTrack+Internal.h ('k') | talk/app/webrtc/objc/RTCPeerConnection+Internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698