Add events processing to GetIceEvents.

Bug: webrtc:10170
Change-Id: I91f58fe67552060ae50eea425637dd50479a9f17
Reviewed-on: https://webrtc-review.googlesource.com/c/121643
Reviewed-by: Björn Terelius <terelius@webrtc.org>
Commit-Queue: Sebastian Jansson <srte@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26569}
This commit is contained in:
Sebastian Jansson
2019-02-06 11:56:59 +01:00
committed by Commit Bot
parent 4092d6fb05
commit 0859142244

View File

@ -2035,6 +2035,7 @@ std::vector<LoggedIceEvent> ParsedRtcEventLog::GetIceEvents() const {
RtcEventProcessor process;
process.AddEvents(ice_candidate_pair_events(), handle_check);
process.AddEvents(ice_candidate_pair_configs(), handle_config);
process.ProcessEventsInOrder();
return log_events;
}