| 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.
|
|
|