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

Unified Diff: chrome/utility/safe_browsing/mac/read_stream_unittest.cc

Issue 2321573002: //chrome misc: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Fix Win compilation 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
« no previous file with comments | « chrome/utility/media_galleries/pmp_column_reader_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/safe_browsing/mac/read_stream_unittest.cc
diff --git a/chrome/utility/safe_browsing/mac/read_stream_unittest.cc b/chrome/utility/safe_browsing/mac/read_stream_unittest.cc
index 1223b67d9a32e6d898e291ffb0d7bf91ea14813f..5ae66ac224991c52ef17ffd8d246fee6e8975d08 100644
--- a/chrome/utility/safe_browsing/mac/read_stream_unittest.cc
+++ b/chrome/utility/safe_browsing/mac/read_stream_unittest.cc
@@ -77,7 +77,7 @@ std::unique_ptr<ReadStream> ReadStreamTest<MemoryReadStreamTest>::CreateStream(
template <>
std::unique_ptr<ReadStream> ReadStreamTest<FileReadStreamTest>::CreateStream(
size_t data_size) {
- base::FilePath path = test_helper_.temp_dir.path().Append("stream");
+ base::FilePath path = test_helper_.temp_dir.GetPath().Append("stream");
test_helper_.file.Initialize(path,
base::File::FLAG_CREATE | base::File::FLAG_WRITE);
if (!test_helper_.file.IsValid()) {
« no previous file with comments | « chrome/utility/media_galleries/pmp_column_reader_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698