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

Unified Diff: chrome/browser/history/expire_history_backend.cc

Issue 12703036: [Sync] Add interface and backend impl for typed URL syncable service (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactor backend change handling and style cleanup Created 7 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/expire_history_backend.cc
diff --git a/chrome/browser/history/expire_history_backend.cc b/chrome/browser/history/expire_history_backend.cc
index 0eceed876f09896435bcc7ba964d8f5e65e30e56..26bd17dd68967a2a68bddbd6fa4a89f78a4a4bf6 100644
--- a/chrome/browser/history/expire_history_backend.cc
+++ b/chrome/browser/history/expire_history_backend.cc
@@ -405,6 +405,9 @@ void ExpireHistoryBackend::BroadcastDeleteNotifications(
deleted_details->archived = (type == DELETION_ARCHIVED);
deleted_details->rows = dependencies->deleted_urls;
deleted_details->favicon_urls = dependencies->expired_favicons;
+ delegate_->NotifySyncURLsDeleted(false,
+ deleted_details->archived,
+ &deleted_details->rows);
delegate_->BroadcastNotifications(
chrome::NOTIFICATION_HISTORY_URLS_DELETED, deleted_details);
}

Powered by Google App Engine
This is Rietveld 408576698