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

Unified Diff: content/browser/fileapi/sandbox_file_system_backend_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/sandbox_file_system_backend_unittest.cc
diff --git a/content/browser/fileapi/sandbox_file_system_backend_unittest.cc b/content/browser/fileapi/sandbox_file_system_backend_unittest.cc
index 18fc76b4493b3fcb6fb9f57c2e3923f1b4b296b4..8009e61b54f94aa11e3f020778bef7ee4fb13cec 100644
--- a/content/browser/fileapi/sandbox_file_system_backend_unittest.cc
+++ b/content/browser/fileapi/sandbox_file_system_backend_unittest.cc
@@ -79,7 +79,7 @@ class SandboxFileSystemBackendTest : public testing::Test {
void SetUpNewDelegate(const storage::FileSystemOptions& options) {
delegate_.reset(new SandboxFileSystemBackendDelegate(
NULL /* quota_manager_proxy */,
- base::ThreadTaskRunnerHandle::Get().get(), data_dir_.path(),
+ base::ThreadTaskRunnerHandle::Get().get(), data_dir_.GetPath(),
NULL /* special_storage_policy */, options));
}
@@ -122,7 +122,7 @@ class SandboxFileSystemBackendTest : public testing::Test {
}
base::FilePath file_system_path() const {
- return data_dir_.path().Append(
+ return data_dir_.GetPath().Append(
SandboxFileSystemBackendDelegate::kFileSystemDirectory);
}

Powered by Google App Engine
This is Rietveld 408576698