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

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

Issue 3015473002: Reject the descriptions that attempt to change the order of m= section in current local description.
Patch Set: Merge. 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
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 kMlineMismatchInSubOffer[];
Taylor Brandstetter 2017/09/14 00:41:47 nit: Might as well just spell out "Subsequent"
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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 641
641 #ifdef HAVE_QUIC 642 #ifdef HAVE_QUIC
642 std::unique_ptr<QuicDataTransport> quic_data_transport_; 643 std::unique_ptr<QuicDataTransport> quic_data_transport_;
643 #endif // HAVE_QUIC 644 #endif // HAVE_QUIC
644 645
645 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); 646 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession);
646 }; 647 };
647 } // namespace webrtc 648 } // namespace webrtc
648 649
649 #endif // WEBRTC_PC_WEBRTCSESSION_H_ 650 #endif // WEBRTC_PC_WEBRTCSESSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698