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

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

Issue 2059703002: Move webrtc/audio_*.h to webrtc/api/call (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased on top of d565b73121b1b7672fb7d1f115bbbbb137a838eb Created 4 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/api/remoteaudiosource.h ('k') | webrtc/audio/BUILD.gn » ('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/webrtcsession.h" 11 #include "webrtc/api/webrtcsession.h"
12 12
13 #include <limits.h> 13 #include <limits.h>
14 14
15 #include <algorithm> 15 #include <algorithm>
16 #include <set> 16 #include <set>
17 #include <utility> 17 #include <utility>
18 #include <vector> 18 #include <vector>
19 19
20 #include "webrtc/api/call/audio_sink.h"
20 #include "webrtc/api/jsepicecandidate.h" 21 #include "webrtc/api/jsepicecandidate.h"
21 #include "webrtc/api/jsepsessiondescription.h" 22 #include "webrtc/api/jsepsessiondescription.h"
22 #include "webrtc/api/peerconnectioninterface.h" 23 #include "webrtc/api/peerconnectioninterface.h"
23 #include "webrtc/api/sctputils.h" 24 #include "webrtc/api/sctputils.h"
24 #include "webrtc/api/webrtcsessiondescriptionfactory.h" 25 #include "webrtc/api/webrtcsessiondescriptionfactory.h"
25 #include "webrtc/audio_sink.h"
26 #include "webrtc/base/basictypes.h" 26 #include "webrtc/base/basictypes.h"
27 #include "webrtc/base/bind.h" 27 #include "webrtc/base/bind.h"
28 #include "webrtc/base/checks.h" 28 #include "webrtc/base/checks.h"
29 #include "webrtc/base/helpers.h" 29 #include "webrtc/base/helpers.h"
30 #include "webrtc/base/logging.h" 30 #include "webrtc/base/logging.h"
31 #include "webrtc/base/stringencode.h" 31 #include "webrtc/base/stringencode.h"
32 #include "webrtc/base/stringutils.h" 32 #include "webrtc/base/stringutils.h"
33 #include "webrtc/call.h" 33 #include "webrtc/call.h"
34 #include "webrtc/media/base/mediaconstants.h" 34 #include "webrtc/media/base/mediaconstants.h"
35 #include "webrtc/media/base/videocapturer.h" 35 #include "webrtc/media/base/videocapturer.h"
(...skipping 2041 matching lines...) Expand 10 before | Expand all | Expand 10 after
2077 } 2077 }
2078 2078
2079 void WebRtcSession::OnDtlsHandshakeError(rtc::SSLHandshakeError error) { 2079 void WebRtcSession::OnDtlsHandshakeError(rtc::SSLHandshakeError error) {
2080 if (metrics_observer_) { 2080 if (metrics_observer_) {
2081 metrics_observer_->IncrementEnumCounter( 2081 metrics_observer_->IncrementEnumCounter(
2082 webrtc::kEnumCounterDtlsHandshakeError, static_cast<int>(error), 2082 webrtc::kEnumCounterDtlsHandshakeError, static_cast<int>(error),
2083 static_cast<int>(rtc::SSLHandshakeError::MAX_VALUE)); 2083 static_cast<int>(rtc::SSLHandshakeError::MAX_VALUE));
2084 } 2084 }
2085 } 2085 }
2086 } // namespace webrtc 2086 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/api/remoteaudiosource.h ('k') | webrtc/audio/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698