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