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

Unified Diff: chrome/test/testing_profile.cc

Issue 7357: Makes the following changes to the bookmark bar context menu:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 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
« chrome/app/generated_resources.grd ('K') | « chrome/test/testing_profile.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« chrome/app/generated_resources.grd ('K') | « chrome/test/testing_profile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698