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

Unified Diff: content/browser/fileapi/transient_file_util_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/transient_file_util_unittest.cc
diff --git a/content/browser/fileapi/transient_file_util_unittest.cc b/content/browser/fileapi/transient_file_util_unittest.cc
index 416404c59e04312229660d459466d6c233d222be..8b747e5e0876b25fb7ff6ca48caf72992d0f2a36 100644
--- a/content/browser/fileapi/transient_file_util_unittest.cc
+++ b/content/browser/fileapi/transient_file_util_unittest.cc
@@ -43,7 +43,7 @@ class TransientFileUtilTest : public testing::Test {
void CreateAndRegisterTemporaryFile(
FileSystemURL* file_url,
base::FilePath* file_path) {
- EXPECT_TRUE(base::CreateTemporaryFileInDir(data_dir_.path(), file_path));
+ EXPECT_TRUE(base::CreateTemporaryFileInDir(data_dir_.GetPath(), file_path));
storage::IsolatedContext* isolated_context =
storage::IsolatedContext::GetInstance();
std::string name = "tmp";

Powered by Google App Engine
This is Rietveld 408576698