| Index: chrome/test/testing_profile.cc
|
| ===================================================================
|
| --- chrome/test/testing_profile.cc (revision 3428)
|
| +++ chrome/test/testing_profile.cc (working copy)
|
| @@ -43,7 +43,8 @@
|
| } // namespace
|
|
|
| TestingProfile::TestingProfile()
|
| - : start_time_(Time::Now()), has_history_service_(false) {
|
| + : start_time_(Time::Now()), has_history_service_(false),
|
| + off_the_record_(false) {
|
| PathService::Get(base::DIR_TEMP, &path_);
|
| file_util::AppendToPath(&path_, L"TestingProfilePath");
|
| file_util::Delete(path_, true);
|
| @@ -51,7 +52,8 @@
|
| }
|
|
|
| TestingProfile::TestingProfile(int count)
|
| - : start_time_(Time::Now()), has_history_service_(false) {
|
| + : start_time_(Time::Now()), has_history_service_(false),
|
| + off_the_record_(false) {
|
| PathService::Get(base::DIR_TEMP, &path_);
|
| file_util::AppendToPath(&path_, L"TestingProfilePath" + IntToWString(count));
|
| file_util::Delete(path_, true);
|
|
|