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

Unified Diff: chrome/test/base/in_process_browser_test.cc

Issue 2321573002: //chrome misc: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Fix Win compilation 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
« no previous file with comments | « chrome/service/service_utility_process_host.cc ('k') | chrome/test/base/testing_profile.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/in_process_browser_test.cc
diff --git a/chrome/test/base/in_process_browser_test.cc b/chrome/test/base/in_process_browser_test.cc
index 6405d8d1ad7aa2bfade0280b329b05a969e5a379..4639bf780d2ca23f46a806bc4683ff25c7447b51 100644
--- a/chrome/test/base/in_process_browser_test.cc
+++ b/chrome/test/base/in_process_browser_test.cc
@@ -339,10 +339,10 @@ bool InProcessBrowserTest::CreateUserDataDirectory() {
if (user_data_dir.empty()) {
if (temp_user_data_dir_.CreateUniqueTempDir() &&
temp_user_data_dir_.IsValid()) {
- user_data_dir = temp_user_data_dir_.path();
+ user_data_dir = temp_user_data_dir_.GetPath();
} else {
LOG(ERROR) << "Could not create temporary user data directory \""
- << temp_user_data_dir_.path().value() << "\".";
+ << temp_user_data_dir_.GetPath().value() << "\".";
return false;
}
}
« no previous file with comments | « chrome/service/service_utility_process_host.cc ('k') | chrome/test/base/testing_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698