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

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

Issue 2380683005: Moved RtcEventLog files from call/ to logging/ (new top level dir) (Closed)
Patch Set: Rebase to master Created 4 years, 2 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 (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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 #ifndef WEBRTC_CALL_RTC_EVENT_LOG_PARSER_H_ 10 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
11 #define WEBRTC_CALL_RTC_EVENT_LOG_PARSER_H_ 11 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
12 12
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "webrtc/base/ignore_wundef.h" 16 #include "webrtc/base/ignore_wundef.h"
17 #include "webrtc/call/rtc_event_log.h" 17 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
18 #include "webrtc/video_receive_stream.h" 18 #include "webrtc/video_receive_stream.h"
19 #include "webrtc/video_send_stream.h" 19 #include "webrtc/video_send_stream.h"
20 20
21 // Files generated at build-time by the protobuf compiler. 21 // Files generated at build-time by the protobuf compiler.
22 RTC_PUSH_IGNORING_WUNDEF() 22 RTC_PUSH_IGNORING_WUNDEF()
23 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD 23 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
24 #include "external/webrtc/webrtc/call/rtc_event_log.pb.h" 24 #include "external/webrtc/webrtc/logging/rtc_event_log/rtc_event_log.pb.h"
25 #else 25 #else
26 #include "webrtc/call/rtc_event_log.pb.h" 26 #include "webrtc/logging/rtc_event_log/rtc_event_log.pb.h"
27 #endif 27 #endif
28 RTC_POP_IGNORING_WUNDEF() 28 RTC_POP_IGNORING_WUNDEF()
29 29
30 namespace webrtc { 30 namespace webrtc {
31 31
32 enum class MediaType; 32 enum class MediaType;
33 33
34 class ParsedRtcEventLog { 34 class ParsedRtcEventLog {
35 friend class RtcEventLogTestHelper; 35 friend class RtcEventLogTestHelper;
36 36
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 int32_t* bitrate, 113 int32_t* bitrate,
114 uint8_t* fraction_loss, 114 uint8_t* fraction_loss,
115 int32_t* total_packets) const; 115 int32_t* total_packets) const;
116 116
117 private: 117 private:
118 std::vector<rtclog::Event> events_; 118 std::vector<rtclog::Event> events_;
119 }; 119 };
120 120
121 } // namespace webrtc 121 } // namespace webrtc
122 122
123 #endif // WEBRTC_CALL_RTC_EVENT_LOG_PARSER_H_ 123 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
OLDNEW
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log_helper_thread.cc ('k') | webrtc/logging/rtc_event_log/rtc_event_log_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698