Renames RtcEventLogParseNew to RtcEventLogParser
Bug: webrtc:10170 Change-Id: I9232c276229a64fa4d8321b6c996387fe130f68b Reviewed-on: https://webrtc-review.googlesource.com/c/116064 Commit-Queue: Sebastian Jansson <srte@webrtc.org> Reviewed-by: Björn Terelius <terelius@webrtc.org> Reviewed-by: Minyue Li <minyue@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26128}
This commit is contained in:
committed by
Commit Bot
parent
a29b3a6f34
commit
b290a6d767
@ -37,7 +37,7 @@
|
||||
#include "logging/rtc_event_log/events/rtc_event_video_send_stream_config.h"
|
||||
#include "logging/rtc_event_log/output/rtc_event_log_output_file.h"
|
||||
#include "logging/rtc_event_log/rtc_event_log.h"
|
||||
#include "logging/rtc_event_log/rtc_event_log_parser_new.h"
|
||||
#include "logging/rtc_event_log/rtc_event_log_parser.h"
|
||||
#include "logging/rtc_event_log/rtc_event_log_unittest_helper.h"
|
||||
#include "logging/rtc_event_log/rtc_stream_config.h"
|
||||
#include "modules/rtp_rtcp/include/rtp_header_extension_map.h"
|
||||
@ -498,7 +498,7 @@ void RtcEventLogSession::WriteLog(EventCounts count,
|
||||
// same as what we wrote down.
|
||||
void RtcEventLogSession::ReadAndVerifyLog() {
|
||||
// Read the generated file from disk.
|
||||
ParsedRtcEventLogNew parsed_log;
|
||||
ParsedRtcEventLog parsed_log;
|
||||
ASSERT_TRUE(parsed_log.ParseFile(temp_filename_));
|
||||
|
||||
// Start and stop events.
|
||||
@ -785,7 +785,7 @@ TEST_P(RtcEventLogCircularBufferTest, KeepsMostRecentEvents) {
|
||||
log_dumper->StopLogging();
|
||||
|
||||
// Read the generated file from disk.
|
||||
ParsedRtcEventLogNew parsed_log;
|
||||
ParsedRtcEventLog parsed_log;
|
||||
ASSERT_TRUE(parsed_log.ParseFile(temp_filename));
|
||||
|
||||
const auto& start_log_events = parsed_log.start_log_events();
|
||||
|
||||
Reference in New Issue
Block a user