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

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

Issue 773103004: Remove NOTIFICATION_HISTORY_URLS_DELETED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove NotificationObserver from InMemoryURLIndex Created 6 years 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/history_notifications.cc
diff --git a/chrome/browser/history/history_notifications.cc b/chrome/browser/history/history_notifications.cc
index 145cec486103465688e550f33e3a0c46605e813e..f366dac842b0dda4b353abd45179d6b199d4de4b 100644
--- a/chrome/browser/history/history_notifications.cc
+++ b/chrome/browser/history/history_notifications.cc
@@ -15,6 +15,16 @@ URLsDeletedDetails::URLsDeletedDetails()
expired(false) {
}
+URLsDeletedDetails::URLsDeletedDetails(bool all_history,
+ bool expired,
+ const URLRows& rows,
+ const std::set<GURL>& favicon_urls)
+ : all_history(all_history),
+ expired(expired),
+ rows(rows),
+ favicon_urls(favicon_urls) {
+}
+
URLsDeletedDetails::~URLsDeletedDetails() {}
KeywordSearchUpdatedDetails::KeywordSearchUpdatedDetails(

Powered by Google App Engine
This is Rietveld 408576698