| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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/call/rtc_event_log.h" | 11 #include "webrtc/call/rtc_event_log.h" |
| 12 | 12 |
| 13 #include <deque> | 13 #include <deque> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "webrtc/base/checks.h" | 16 #include "webrtc/base/checks.h" |
| 17 #include "webrtc/base/criticalsection.h" | 17 #include "webrtc/base/criticalsection.h" |
| 18 #include "webrtc/base/thread_annotations.h" | 18 #include "webrtc/base/thread_annotations.h" |
| 19 #include "webrtc/call.h" | 19 #include "webrtc/call.h" |
| 20 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" | 20 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" |
| 21 #include "webrtc/system_wrappers/interface/clock.h" | 21 #include "webrtc/system_wrappers/include/clock.h" |
| 22 #include "webrtc/system_wrappers/interface/file_wrapper.h" | 22 #include "webrtc/system_wrappers/include/file_wrapper.h" |
| 23 | 23 |
| 24 #ifdef ENABLE_RTC_EVENT_LOG | 24 #ifdef ENABLE_RTC_EVENT_LOG |
| 25 // Files generated at build-time by the protobuf compiler. | 25 // Files generated at build-time by the protobuf compiler. |
| 26 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD | 26 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD |
| 27 #include "external/webrtc/webrtc/call/rtc_event_log.pb.h" | 27 #include "external/webrtc/webrtc/call/rtc_event_log.pb.h" |
| 28 #else | 28 #else |
| 29 #include "webrtc/call/rtc_event_log.pb.h" | 29 #include "webrtc/call/rtc_event_log.pb.h" |
| 30 #endif | 30 #endif |
| 31 #endif | 31 #endif |
| 32 | 32 |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 } | 458 } |
| 459 | 459 |
| 460 #endif // ENABLE_RTC_EVENT_LOG | 460 #endif // ENABLE_RTC_EVENT_LOG |
| 461 | 461 |
| 462 // RtcEventLog member functions. | 462 // RtcEventLog member functions. |
| 463 rtc::scoped_ptr<RtcEventLog> RtcEventLog::Create() { | 463 rtc::scoped_ptr<RtcEventLog> RtcEventLog::Create() { |
| 464 return rtc::scoped_ptr<RtcEventLog>(new RtcEventLogImpl()); | 464 return rtc::scoped_ptr<RtcEventLog>(new RtcEventLogImpl()); |
| 465 } | 465 } |
| 466 | 466 |
| 467 } // namespace webrtc | 467 } // namespace webrtc |
| OLD | NEW |