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

Side by Side Diff: webrtc/logging/rtc_event_log/rtc_event_log.h

Issue 2550273003: Moved call.h and most of api/call/* into call/ (Closed)
Patch Set: Added <set> include after presubmit complained. Created 4 years 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/logging/rtc_event_log/DEPS ('k') | webrtc/logging/rtc_event_log/rtc_event_log.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 (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 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ 11 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_
12 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ 12 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_
13 13
14 #include <memory> 14 #include <memory>
15 #include <string> 15 #include <string>
16 16
17 #include "webrtc/api/call/audio_receive_stream.h"
18 #include "webrtc/api/call/audio_send_stream.h"
19 #include "webrtc/base/platform_file.h" 17 #include "webrtc/base/platform_file.h"
18 #include "webrtc/call/audio_receive_stream.h"
19 #include "webrtc/call/audio_send_stream.h"
20 #include "webrtc/video_receive_stream.h" 20 #include "webrtc/video_receive_stream.h"
21 #include "webrtc/video_send_stream.h" 21 #include "webrtc/video_send_stream.h"
22 22
23 namespace webrtc { 23 namespace webrtc {
24 24
25 // Forward declaration of storage class that is automatically generated from 25 // Forward declaration of storage class that is automatically generated from
26 // the protobuf file. 26 // the protobuf file.
27 namespace rtclog { 27 namespace rtclog {
28 class EventStream; 28 class EventStream;
29 } // namespace rtclog 29 } // namespace rtclog
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 size_t length) override {} 147 size_t length) override {}
148 void LogAudioPlayout(uint32_t ssrc) override {} 148 void LogAudioPlayout(uint32_t ssrc) override {}
149 void LogBwePacketLossEvent(int32_t bitrate, 149 void LogBwePacketLossEvent(int32_t bitrate,
150 uint8_t fraction_loss, 150 uint8_t fraction_loss,
151 int32_t total_packets) override {} 151 int32_t total_packets) override {}
152 }; 152 };
153 153
154 } // namespace webrtc 154 } // namespace webrtc
155 155
156 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ 156 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_
OLDNEW
« no previous file with comments | « webrtc/logging/rtc_event_log/DEPS ('k') | webrtc/logging/rtc_event_log/rtc_event_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698