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

Unified Diff: content/browser/fileapi/file_system_operation_impl_write_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/file_system_operation_impl_write_unittest.cc
diff --git a/content/browser/fileapi/file_system_operation_impl_write_unittest.cc b/content/browser/fileapi/file_system_operation_impl_write_unittest.cc
index 4b2534b770f6462d0c664f584f50d99091caf316..95689d6e04e6c4dc795b3c353b7f1d248cc6e0e7 100644
--- a/content/browser/fileapi/file_system_operation_impl_write_unittest.cc
+++ b/content/browser/fileapi/file_system_operation_impl_write_unittest.cc
@@ -70,14 +70,14 @@ class FileSystemOperationImplWriteTest
ASSERT_TRUE(dir_.CreateUniqueTempDir());
quota_manager_ =
- new MockQuotaManager(false /* is_incognito */, dir_.path(),
+ new MockQuotaManager(false /* is_incognito */, dir_.GetPath(),
base::ThreadTaskRunnerHandle::Get().get(),
base::ThreadTaskRunnerHandle::Get().get(),
NULL /* special storage policy */);
virtual_path_ = base::FilePath(FILE_PATH_LITERAL("temporary file"));
file_system_context_ = CreateFileSystemContextForTesting(
- quota_manager_->proxy(), dir_.path());
+ quota_manager_->proxy(), dir_.GetPath());
url_request_context_.reset(
new MockBlobURLRequestContext(file_system_context_.get()));

Powered by Google App Engine
This is Rietveld 408576698