Delete almost all includes of platform_file.h
Only remaining user is WavReader. Demote its constructor accepting a PlatformFile to private, to refactor implementation in a later cl. Bug: webrtc:6463 Change-Id: I7b950be6f02073cb135dd0fab1190b9dc0de1fba Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/144025 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28410}
This commit is contained in:
@ -15,7 +15,6 @@
|
||||
#include <string>
|
||||
|
||||
#include "modules/rtp_rtcp/source/byte_io.h"
|
||||
#include "rtc_base/platform_file.h"
|
||||
#include "test/gtest.h"
|
||||
#include "test/testsupport/file_utils.h"
|
||||
|
||||
@ -33,7 +32,7 @@ class IvfFileWriterTest : public ::testing::Test {
|
||||
file_name_ =
|
||||
webrtc::test::TempFilename(webrtc::test::OutputPath(), "test_file");
|
||||
}
|
||||
void TearDown() override { rtc::RemoveFile(file_name_); }
|
||||
void TearDown() override { webrtc::test::RemoveFile(file_name_); }
|
||||
|
||||
bool WriteDummyTestFrames(VideoCodecType codec_type,
|
||||
int width,
|
||||
|
||||
Reference in New Issue
Block a user