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

Unified Diff: content/browser/fileapi/local_file_stream_reader_unittest.cc

Issue 2316043002: //content: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Just rebased 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: content/browser/fileapi/local_file_stream_reader_unittest.cc
diff --git a/content/browser/fileapi/local_file_stream_reader_unittest.cc b/content/browser/fileapi/local_file_stream_reader_unittest.cc
index 3b63001d6fb610d6c6229ccb9535af00f7e8873c..d0c7c72007dab1b8f987fd0a812965b411258ad5 100644
--- a/content/browser/fileapi/local_file_stream_reader_unittest.cc
+++ b/content/browser/fileapi/local_file_stream_reader_unittest.cc
@@ -110,8 +110,10 @@ class LocalFileStreamReaderTest : public testing::Test {
return file_thread_.task_runner().get();
}
- base::FilePath test_dir() const { return dir_.path(); }
- base::FilePath test_path() const { return dir_.path().AppendASCII("test"); }
+ base::FilePath test_dir() const { return dir_.GetPath(); }
+ base::FilePath test_path() const {
+ return dir_.GetPath().AppendASCII("test");
+ }
base::Time test_file_modification_time() const {
return test_file_modification_time_;
}
« no previous file with comments | « content/browser/fileapi/file_writer_delegate_unittest.cc ('k') | content/browser/fileapi/local_file_stream_writer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698