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

Unified Diff: components/filesystem/file_system_impl.cc

Issue 2317003002: //chrome/browser and //components F-L: 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: components/filesystem/file_system_impl.cc
diff --git a/components/filesystem/file_system_impl.cc b/components/filesystem/file_system_impl.cc
index 5338909dd1cabc81893082a2f5fcf97ed1efe4ec..1dc800869028a3309ecb60c1d1994973731adfd9 100644
--- a/components/filesystem/file_system_impl.cc
+++ b/components/filesystem/file_system_impl.cc
@@ -40,7 +40,7 @@ void FileSystemImpl::OpenTempDirectory(
std::unique_ptr<base::ScopedTempDir> temp_dir(new base::ScopedTempDir);
CHECK(temp_dir->CreateUniqueTempDir());
- base::FilePath path = temp_dir->path();
+ base::FilePath path = temp_dir->GetPath();
scoped_refptr<SharedTempDir> shared_temp_dir =
new SharedTempDir(std::move(temp_dir));
mojo::MakeStrongBinding(base::MakeUnique<DirectoryImpl>(

Powered by Google App Engine
This is Rietveld 408576698