From 90ef1313cb672e7da91312c4f7d3cdee41c7a767 Mon Sep 17 00:00:00 2001 From: "sky@google.com" Date: Wed, 27 Aug 2008 03:27:46 +0000 Subject: Makes deleting history no longer delete starred urls. Thiseffectively reenables the code in ExpireHistoryBackend. I also madethe code consistent so that when we delete visits as the result ofhistory deletion we don't change the typed/visit count of theunderlying url.BUG=1214201 1256202TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1423 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/autocomplete/history_contents_provider_unittest.cc | 2 +- chrome/browser/autocomplete/history_url_provider_unittest.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/autocomplete') diff --git a/chrome/browser/autocomplete/history_contents_provider_unittest.cc b/chrome/browser/autocomplete/history_contents_provider_unittest.cc index ba7985a..2e1a646 100644 --- a/chrome/browser/autocomplete/history_contents_provider_unittest.cc +++ b/chrome/browser/autocomplete/history_contents_provider_unittest.cc @@ -54,7 +54,7 @@ class HistoryContentsProviderTest : public testing::Test, file_util::CreateDirectoryW(history_dir_); history_service_ = new HistoryService; - history_service_->Init(history_dir_); + history_service_->Init(history_dir_, NULL); // Populate history. for (int i = 0; i < arraysize(test_entries); i++) { diff --git a/chrome/browser/autocomplete/history_url_provider_unittest.cc b/chrome/browser/autocomplete/history_url_provider_unittest.cc index 05a696d..6dd80e9 100644 --- a/chrome/browser/autocomplete/history_url_provider_unittest.cc +++ b/chrome/browser/autocomplete/history_url_provider_unittest.cc @@ -114,7 +114,7 @@ void HistoryURLProviderTest::OnProviderUpdate(bool updated_matches) { void HistoryURLProviderTest::SetUp() { profile_.reset(new TestingProfile()); - profile_->CreateBookmarkBarModel(); + profile_->CreateBookmarkBarModel(true); profile_->CreateHistoryService(true); history_service_ = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); -- cgit v1.1