summaryrefslogtreecommitdiffstats
path: root/chrome/test/testing_profile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/testing_profile.cc')
-rw-r--r--chrome/test/testing_profile.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc
index 272f94c..8abb4ec 100644
--- a/chrome/test/testing_profile.cc
+++ b/chrome/test/testing_profile.cc
@@ -43,7 +43,8 @@ class BookmarkLoadObserver : public BookmarkModelObserver {
} // 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()
}
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);