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

Unified Diff: chrome/browser/history/android/android_provider_backend.cc

Issue 10031028: Single URL Expires Were Not Being Deleted. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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
Index: chrome/browser/history/android/android_provider_backend.cc
===================================================================
--- chrome/browser/history/android/android_provider_backend.cc (revision 132078)
+++ chrome/browser/history/android/android_provider_backend.cc (working copy)
@@ -900,7 +900,6 @@
if (!history_db_->GetURLRow(ids[0].url_id, &old_url_row))
return false;
deleted_details->rows.push_back(old_url_row);
- deleted_details->urls.insert(old_url_row.url());
FaviconID favicon_id = statement->statement()->ColumnInt64(4);
if (favicon_id) {
@@ -1026,7 +1025,6 @@
if (!history_db_->GetURLRow(i->url_id, &url_row))
return false;
deleted_details->rows.push_back(url_row);
- deleted_details->urls.insert(url_row.url());
if (thumbnail_db_->GetIconMappingsForPageURL(url_row.url(), NULL))
favicon->urls.insert(url_row.url());
}

Powered by Google App Engine
This is Rietveld 408576698