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

Unified Diff: content/browser/fileapi/file_system_context_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_context_unittest.cc
diff --git a/content/browser/fileapi/file_system_context_unittest.cc b/content/browser/fileapi/file_system_context_unittest.cc
index 8e1ff7d6d24b4c27779639cd4acc35697784d24c..de01fce6f75b88401636fc14fad76366034380ee 100644
--- a/content/browser/fileapi/file_system_context_unittest.cc
+++ b/content/browser/fileapi/file_system_context_unittest.cc
@@ -59,7 +59,7 @@ class FileSystemContextTest : public testing::Test {
storage_policy_ = new MockSpecialStoragePolicy();
mock_quota_manager_ = new MockQuotaManager(
- false /* is_incognito */, data_dir_.path(),
+ false /* is_incognito */, data_dir_.GetPath(),
base::ThreadTaskRunnerHandle::Get().get(),
base::ThreadTaskRunnerHandle::Get().get(), storage_policy_.get());
}
@@ -72,7 +72,7 @@ class FileSystemContextTest : public testing::Test {
base::ThreadTaskRunnerHandle::Get().get(), external_mount_points,
storage_policy_.get(), mock_quota_manager_->proxy(),
ScopedVector<FileSystemBackend>(),
- std::vector<storage::URLRequestAutoMountHandler>(), data_dir_.path(),
+ std::vector<storage::URLRequestAutoMountHandler>(), data_dir_.GetPath(),
CreateAllowFileAccessOptions());
}

Powered by Google App Engine
This is Rietveld 408576698