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

Side by Side Diff: webrtc/api/jsepsessiondescription.cc

Issue 1691463002: Move talk/session/media -> webrtc/pc (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Last rebase 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
« no previous file with comments | « webrtc/api/datachannel.h ('k') | webrtc/api/jsepsessiondescription_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/api/jsepsessiondescription.h" 11 #include "webrtc/api/jsepsessiondescription.h"
12 12
13 #include "webrtc/api/webrtcsdp.h" 13 #include "webrtc/api/webrtcsdp.h"
14 #include "talk/session/media/mediasession.h"
15 #include "webrtc/base/arraysize.h" 14 #include "webrtc/base/arraysize.h"
16 #include "webrtc/base/stringencode.h" 15 #include "webrtc/base/stringencode.h"
16 #include "webrtc/pc/mediasession.h"
17 17
18 using rtc::scoped_ptr; 18 using rtc::scoped_ptr;
19 using cricket::SessionDescription; 19 using cricket::SessionDescription;
20 20
21 namespace webrtc { 21 namespace webrtc {
22 22
23 static const char* kSupportedTypes[] = { 23 static const char* kSupportedTypes[] = {
24 JsepSessionDescription::kOffer, 24 JsepSessionDescription::kOffer,
25 JsepSessionDescription::kPrAnswer, 25 JsepSessionDescription::kPrAnswer,
26 JsepSessionDescription::kAnswer 26 JsepSessionDescription::kAnswer
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 if (!found) { 177 if (!found) {
178 // If the sdp_mid is presented but we can't find a match, we consider 178 // If the sdp_mid is presented but we can't find a match, we consider
179 // this as an error. 179 // this as an error.
180 return false; 180 return false;
181 } 181 }
182 } 182 }
183 return true; 183 return true;
184 } 184 }
185 185
186 } // namespace webrtc 186 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/api/datachannel.h ('k') | webrtc/api/jsepsessiondescription_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698