| OLD | NEW |
| 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 18 matching lines...) Expand all Loading... |
| 29 #include "webrtc/api/rtpsender.h" | 29 #include "webrtc/api/rtpsender.h" |
| 30 #include "webrtc/api/streamcollection.h" | 30 #include "webrtc/api/streamcollection.h" |
| 31 #include "webrtc/api/videocapturertracksource.h" | 31 #include "webrtc/api/videocapturertracksource.h" |
| 32 #include "webrtc/api/videotrack.h" | 32 #include "webrtc/api/videotrack.h" |
| 33 #include "webrtc/base/arraysize.h" | 33 #include "webrtc/base/arraysize.h" |
| 34 #include "webrtc/base/bind.h" | 34 #include "webrtc/base/bind.h" |
| 35 #include "webrtc/base/logging.h" | 35 #include "webrtc/base/logging.h" |
| 36 #include "webrtc/base/stringencode.h" | 36 #include "webrtc/base/stringencode.h" |
| 37 #include "webrtc/base/stringutils.h" | 37 #include "webrtc/base/stringutils.h" |
| 38 #include "webrtc/base/trace_event.h" | 38 #include "webrtc/base/trace_event.h" |
| 39 #include "webrtc/call.h" | 39 #include "webrtc/call/call.h" |
| 40 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" | 40 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" |
| 41 #include "webrtc/media/sctp/sctpdataengine.h" | 41 #include "webrtc/media/sctp/sctpdataengine.h" |
| 42 #include "webrtc/pc/channelmanager.h" | 42 #include "webrtc/pc/channelmanager.h" |
| 43 #include "webrtc/system_wrappers/include/clock.h" | 43 #include "webrtc/system_wrappers/include/clock.h" |
| 44 #include "webrtc/system_wrappers/include/field_trial.h" | 44 #include "webrtc/system_wrappers/include/field_trial.h" |
| 45 | 45 |
| 46 namespace { | 46 namespace { |
| 47 | 47 |
| 48 using webrtc::DataChannel; | 48 using webrtc::DataChannel; |
| 49 using webrtc::MediaConstraintsInterface; | 49 using webrtc::MediaConstraintsInterface; |
| (...skipping 2317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2367 | 2367 |
| 2368 bool PeerConnection::StartRtcEventLog_w(rtc::PlatformFile file, | 2368 bool PeerConnection::StartRtcEventLog_w(rtc::PlatformFile file, |
| 2369 int64_t max_size_bytes) { | 2369 int64_t max_size_bytes) { |
| 2370 return event_log_->StartLogging(file, max_size_bytes); | 2370 return event_log_->StartLogging(file, max_size_bytes); |
| 2371 } | 2371 } |
| 2372 | 2372 |
| 2373 void PeerConnection::StopRtcEventLog_w() { | 2373 void PeerConnection::StopRtcEventLog_w() { |
| 2374 event_log_->StopLogging(); | 2374 event_log_->StopLogging(); |
| 2375 } | 2375 } |
| 2376 } // namespace webrtc | 2376 } // namespace webrtc |
| OLD | NEW |