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

Unified Diff: chrome/test/base/testing_profile.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/test/base/in_process_browser_test.cc ('k') | chrome/test/base/testing_profile_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/testing_profile.cc
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc
index e8ebc0b640ad388f88c27f11638c2744e08e2447..1952223c845e5c033233ec0bbe2c388033efa86b 100644
--- a/chrome/test/base/testing_profile.cc
+++ b/chrome/test/base/testing_profile.cc
@@ -280,7 +280,7 @@ TestingProfile::TestingProfile()
delegate_(NULL),
profile_name_(kTestingProfile) {
CreateTempProfileDir();
- profile_path_ = temp_dir_.path();
+ profile_path_ = temp_dir_.GetPath();
Init();
FinishInit();
@@ -363,7 +363,7 @@ TestingProfile::TestingProfile(
// If no profile path was supplied, create one.
if (profile_path_.empty()) {
CreateTempProfileDir();
- profile_path_ = temp_dir_.path();
+ profile_path_ = temp_dir_.GetPath();
}
// Set any testing factories prior to initializing the services.
« no previous file with comments | « chrome/test/base/in_process_browser_test.cc ('k') | chrome/test/base/testing_profile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698