Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1644)

Unified Diff: chrome/browser/media/webrtc/webrtc_rtp_dump_writer_unittest.cc

Issue 2318033002: c/browser, c/common, components M-N: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Fix ItunesFileUtilTest Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media/webrtc/webrtc_rtp_dump_writer_unittest.cc
diff --git a/chrome/browser/media/webrtc/webrtc_rtp_dump_writer_unittest.cc b/chrome/browser/media/webrtc/webrtc_rtp_dump_writer_unittest.cc
index 491b93a14bbccaf9aa2e529fd75ba1f6e5f4bf76..72c158f85ebd58285946223caf4775885a04e209 100644
--- a/chrome/browser/media/webrtc/webrtc_rtp_dump_writer_unittest.cc
+++ b/chrome/browser/media/webrtc/webrtc_rtp_dump_writer_unittest.cc
@@ -59,8 +59,8 @@ class WebRtcRtpDumpWriterTest : public testing::Test {
virtual void SetUp() {
ASSERT_TRUE(temp_dir_->CreateUniqueTempDir());
- incoming_dump_path_ = temp_dir_->path().AppendASCII("rtpdump_recv");
- outgoing_dump_path_ = temp_dir_->path().AppendASCII("rtpdump_send");
+ incoming_dump_path_ = temp_dir_->GetPath().AppendASCII("rtpdump_recv");
+ outgoing_dump_path_ = temp_dir_->GetPath().AppendASCII("rtpdump_send");
writer_.reset(new WebRtcRtpDumpWriter(
incoming_dump_path_,
outgoing_dump_path_,

Powered by Google App Engine
This is Rietveld 408576698