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

Unified Diff: content/public/test/test_launcher.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/public/test/test_launcher.cc
diff --git a/content/public/test/test_launcher.cc b/content/public/test/test_launcher.cc
index 134edec7a54337e1c3d48c813164f702b06f802e..a756357553ff3b9e446dfc7111ee48caaec584a3 100644
--- a/content/public/test/test_launcher.cc
+++ b/content/public/test/test_launcher.cc
@@ -258,7 +258,7 @@ size_t WrapperTestLauncherDelegate::RunTests(
if (!base::ContainsKey(user_data_dir_map_, full_name)) {
base::FilePath temp_dir;
- CHECK(base::CreateTemporaryDirInDir(temp_dir_.path(),
+ CHECK(base::CreateTemporaryDirInDir(temp_dir_.GetPath(),
FILE_PATH_LITERAL("d"), &temp_dir));
user_data_dir_map_[full_name] = temp_dir;
}
@@ -316,7 +316,7 @@ size_t WrapperTestLauncherDelegate::RetryTests(
std::string test_name_no_pre(RemoveAnyPrePrefixes(full_name));
if (!base::ContainsKey(user_data_dir_map_, test_name_no_pre)) {
base::FilePath temp_dir;
- CHECK(base::CreateTemporaryDirInDir(temp_dir_.path(),
+ CHECK(base::CreateTemporaryDirInDir(temp_dir_.GetPath(),
FILE_PATH_LITERAL("d"), &temp_dir));
user_data_dir_map_[test_name_no_pre] = temp_dir;
}
« no previous file with comments | « content/public/test/test_browser_context.cc ('k') | content/shell/browser/layout_test/layout_test_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698