Include-what-you-use api/rtc_event_log_output*

Bug: webrtc:42226242
Change-Id: Ibf28c25900776f1223dfe9685d2fc299d4da7269
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/354680
Auto-Submit: Björn Terelius <terelius@webrtc.org>
Commit-Queue: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#42491}
This commit is contained in:
Björn Terelius 2024-06-13 16:44:09 +02:00 committed by WebRTC LUCI CQ
parent 77ffbd3099
commit 08b649b6b7
5 changed files with 11 additions and 1 deletions

View file

@ -765,6 +765,7 @@ rtc_library("rtc_event_log_output_file") {
"../rtc_base:logging",
"../rtc_base/system:file_wrapper",
"rtc_event_log",
"//third_party/abseil-cpp/absl/strings:string_view",
]
}

View file

@ -11,7 +11,6 @@
#ifndef API_RTC_EVENT_LOG_OUTPUT_H_
#define API_RTC_EVENT_LOG_OUTPUT_H_
#include <string>
#include "absl/strings/string_view.h"

View file

@ -10,12 +10,17 @@
#include "api/rtc_event_log_output_file.h"
#include <cstddef>
#include <cstdio>
#include <limits>
#include <string>
#include <utility>
#include "absl/strings/string_view.h"
#include "api/rtc_event_log/rtc_event_log.h"
#include "rtc_base/checks.h"
#include "rtc_base/logging.h"
#include "rtc_base/system/file_wrapper.h"
namespace webrtc {

View file

@ -16,6 +16,7 @@
#include <string>
#include "absl/strings/string_view.h"
#include "api/rtc_event_log_output.h"
#include "rtc_base/system/file_wrapper.h"

View file

@ -10,7 +10,11 @@
#include "api/rtc_event_log_output_file.h"
#include <stdio.h>
#include <cstddef>
#include <fstream>
#include <ios>
#include <iterator>
#include <memory>
#include <string>