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

Unified Diff: chrome/browser/history/expire_history_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
« no previous file with comments | « no previous file | chrome/browser/history/in_memory_url_index_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/expire_history_backend.cc
===================================================================
--- chrome/browser/history/expire_history_backend.cc (revision 131457)
+++ chrome/browser/history/expire_history_backend.cc (working copy)
@@ -359,6 +359,8 @@
// determine if they care whether anything was deleted).
URLsDeletedDetails* deleted_details = new URLsDeletedDetails;
deleted_details->all_history = false;
+ deleted_details->rows = dependencies->deleted_urls;
sky 2012/04/12 20:54:10 Why do we need both? If we're providing rows can't
+ // Build a set of the URLs for those of our clients who prefer only URLs.
for (size_t i = 0; i < dependencies->deleted_urls.size(); i++)
deleted_details->urls.insert(dependencies->deleted_urls[i].url());
delegate_->BroadcastNotifications(
« no previous file with comments | « no previous file | chrome/browser/history/in_memory_url_index_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698