| Index: webrtc/logging/rtc_event_log/rtc_event_log_helper_thread.h
|
| diff --git a/webrtc/logging/rtc_event_log/rtc_event_log_helper_thread.h b/webrtc/logging/rtc_event_log/rtc_event_log_helper_thread.h
|
| index 16faad3a146a3d8a2df85c150ea680d15f352c73..93233d8268885406b3db1bb573ea643ab1db196a 100644
|
| --- a/webrtc/logging/rtc_event_log/rtc_event_log_helper_thread.h
|
| +++ b/webrtc/logging/rtc_event_log/rtc_event_log_helper_thread.h
|
| @@ -11,6 +11,7 @@
|
| #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_HELPER_THREAD_H_
|
| #define WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_HELPER_THREAD_H_
|
|
|
| +#include <deque>
|
| #include <limits>
|
| #include <memory>
|
| #include <utility>
|
| @@ -95,7 +96,7 @@ class RtcEventLogHelperThread final {
|
| SwapQueue<std::unique_ptr<rtclog::Event>>* event_queue_;
|
|
|
| // History containing the most recent events (~ 10 s).
|
| - RingBuffer<std::unique_ptr<rtclog::Event>> history_;
|
| + std::deque<std::unique_ptr<rtclog::Event>> history_;
|
|
|
| // History containing all past configuration events.
|
| std::vector<std::unique_ptr<rtclog::Event>> config_history_;
|
|
|