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

Side by Side Diff: webrtc/pc/webrtcsession.h

Issue 3012313002: Reject the descriptions that attempt to change the order of m= sections (Closed)
Patch Set: Address comments. Created 3 years, 3 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/pc/peerconnectioninterface_unittest.cc ('k') | webrtc/pc/webrtcsession.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
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 class IceRestartAnswerLatch; 54 class IceRestartAnswerLatch;
55 class JsepIceCandidate; 55 class JsepIceCandidate;
56 class MediaStreamSignaling; 56 class MediaStreamSignaling;
57 class RtcEventLog; 57 class RtcEventLog;
58 class WebRtcSessionDescriptionFactory; 58 class WebRtcSessionDescriptionFactory;
59 59
60 extern const char kBundleWithoutRtcpMux[]; 60 extern const char kBundleWithoutRtcpMux[];
61 extern const char kCreateChannelFailed[]; 61 extern const char kCreateChannelFailed[];
62 extern const char kInvalidCandidates[]; 62 extern const char kInvalidCandidates[];
63 extern const char kInvalidSdp[]; 63 extern const char kInvalidSdp[];
64 extern const char kMlineMismatch[]; 64 extern const char kMlineMismatchInAnswer[];
65 extern const char kMlineMismatchInSubsequentOffer[];
65 extern const char kPushDownTDFailed[]; 66 extern const char kPushDownTDFailed[];
66 extern const char kSdpWithoutDtlsFingerprint[]; 67 extern const char kSdpWithoutDtlsFingerprint[];
67 extern const char kSdpWithoutSdesCrypto[]; 68 extern const char kSdpWithoutSdesCrypto[];
68 extern const char kSdpWithoutIceUfragPwd[]; 69 extern const char kSdpWithoutIceUfragPwd[];
69 extern const char kSdpWithoutSdesAndDtlsDisabled[]; 70 extern const char kSdpWithoutSdesAndDtlsDisabled[];
70 extern const char kSessionError[]; 71 extern const char kSessionError[];
71 extern const char kSessionErrorDesc[]; 72 extern const char kSessionErrorDesc[];
72 extern const char kDtlsSrtpSetupFailureRtp[]; 73 extern const char kDtlsSrtpSetupFailureRtp[];
73 extern const char kDtlsSrtpSetupFailureRtcp[]; 74 extern const char kDtlsSrtpSetupFailureRtcp[];
74 extern const char kEnableBundleFailed[]; 75 extern const char kEnableBundleFailed[];
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 671
671 #ifdef HAVE_QUIC 672 #ifdef HAVE_QUIC
672 std::unique_ptr<QuicDataTransport> quic_data_transport_; 673 std::unique_ptr<QuicDataTransport> quic_data_transport_;
673 #endif // HAVE_QUIC 674 #endif // HAVE_QUIC
674 675
675 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); 676 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession);
676 }; 677 };
677 } // namespace webrtc 678 } // namespace webrtc
678 679
679 #endif // WEBRTC_PC_WEBRTCSESSION_H_ 680 #endif // WEBRTC_PC_WEBRTCSESSION_H_
OLDNEW
« no previous file with comments | « webrtc/pc/peerconnectioninterface_unittest.cc ('k') | webrtc/pc/webrtcsession.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698