| Index: chrome/browser/media/webrtc/webrtc_rtp_dump_handler_unittest.cc
|
| diff --git a/chrome/browser/media/webrtc/webrtc_rtp_dump_handler_unittest.cc b/chrome/browser/media/webrtc/webrtc_rtp_dump_handler_unittest.cc
|
| index f5a6e8c65a14f88e622b239a68db7bcf2c77b240..5ad0ee67805e4be61ebda09631ce3611afa45496 100644
|
| --- a/chrome/browser/media/webrtc/webrtc_rtp_dump_handler_unittest.cc
|
| +++ b/chrome/browser/media/webrtc/webrtc_rtp_dump_handler_unittest.cc
|
| @@ -270,10 +270,10 @@ TEST_F(WebRtcRtpDumpHandlerTest, StartBothThenStopIncomingStopOutgoing) {
|
| TEST_F(WebRtcRtpDumpHandlerTest, DumpsCleanedUpIfNotReleased) {
|
| base::ScopedTempDir temp_dir;
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
| - ResetDumpHandler(temp_dir.path(), true);
|
| + ResetDumpHandler(temp_dir.GetPath(), true);
|
|
|
| base::FilePath incoming_dump, outgoing_dump;
|
| - WriteFakeDumpFiles(temp_dir.path(), &incoming_dump, &outgoing_dump);
|
| + WriteFakeDumpFiles(temp_dir.GetPath(), &incoming_dump, &outgoing_dump);
|
|
|
| std::string error;
|
| EXPECT_TRUE(handler_->StartDump(RTP_DUMP_BOTH, &error));
|
| @@ -296,10 +296,10 @@ TEST_F(WebRtcRtpDumpHandlerTest, DumpDeletedIfEndDumpFailed) {
|
| ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
|
|
|
| // Make the writer return failure on EndStream.
|
| - ResetDumpHandler(temp_dir.path(), false);
|
| + ResetDumpHandler(temp_dir.GetPath(), false);
|
|
|
| base::FilePath incoming_dump, outgoing_dump;
|
| - WriteFakeDumpFiles(temp_dir.path(), &incoming_dump, &outgoing_dump);
|
| + WriteFakeDumpFiles(temp_dir.GetPath(), &incoming_dump, &outgoing_dump);
|
|
|
| std::string error;
|
| EXPECT_TRUE(handler_->StartDump(RTP_DUMP_BOTH, &error));
|
|
|