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

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

Issue 3012233002: Remove #include of rtc_stream_config.h from rtc_event_log.h (Closed)
Patch Set: Rebased Created 3 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
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_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_ 10 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
11 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_ 11 #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
12 12
13 #include <map> 13 #include <map>
14 #include <string> 14 #include <string>
15 #include <utility> // pair 15 #include <utility> // pair
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/call/video_receive_stream.h" 18 #include "webrtc/call/video_receive_stream.h"
19 #include "webrtc/call/video_send_stream.h" 19 #include "webrtc/call/video_send_stream.h"
20 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 20 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
21 #include "webrtc/logging/rtc_event_log/rtc_stream_config.h"
21 #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" 22 #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h"
22 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 23 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
23 #include "webrtc/rtc_base/ignore_wundef.h" 24 #include "webrtc/rtc_base/ignore_wundef.h"
24 25
25 // Files generated at build-time by the protobuf compiler. 26 // Files generated at build-time by the protobuf compiler.
26 RTC_PUSH_IGNORING_WUNDEF() 27 RTC_PUSH_IGNORING_WUNDEF()
27 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD 28 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
28 #include "external/webrtc/webrtc/logging/rtc_event_log/rtc_event_log.pb.h" 29 #include "external/webrtc/webrtc/logging/rtc_event_log/rtc_event_log.pb.h"
29 #else 30 #else
30 #include "webrtc/logging/rtc_event_log/rtc_event_log.pb.h" 31 #include "webrtc/logging/rtc_event_log/rtc_event_log.pb.h"
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 204
204 // To find configured extensions map for given stream, what are needed to 205 // To find configured extensions map for given stream, what are needed to
205 // parse a header. 206 // parse a header.
206 typedef std::pair<uint32_t, webrtc::PacketDirection> StreamId; 207 typedef std::pair<uint32_t, webrtc::PacketDirection> StreamId;
207 std::map<StreamId, webrtc::RtpHeaderExtensionMap*> rtp_extensions_maps_; 208 std::map<StreamId, webrtc::RtpHeaderExtensionMap*> rtp_extensions_maps_;
208 }; 209 };
209 210
210 } // namespace webrtc 211 } // namespace webrtc
211 212
212 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_ 213 #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.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