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

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

Issue 808123003: Eliminate sending NOTIFICATION_HISTORY_KEYWORD_SEARCH_TERM_UPDATED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: inline code for provider class 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.h
diff --git a/chrome/browser/history/history_notifications.h b/chrome/browser/history/history_notifications.h
index 6178b99a2780a8bd79d8fe6d83f478df942501ba..add1ffb113bb3b032c8ab31722664d85ee833100 100644
--- a/chrome/browser/history/history_notifications.h
+++ b/chrome/browser/history/history_notifications.h
@@ -49,20 +49,6 @@ struct URLsDeletedDetails : public HistoryDetails {
std::set<GURL> favicon_urls;
};
-// Details for HISTORY_KEYWORD_SEARCH_TERM_UPDATED.
-struct KeywordSearchUpdatedDetails : public HistoryDetails {
- KeywordSearchUpdatedDetails(const URLRow& url_row,
- KeywordID keyword_id,
- const base::string16& term);
- ~KeywordSearchUpdatedDetails() override;
-
- // The affected URLRow. The ID will be set to the value that is currently in
- // effect in the main history database.
- URLRow url_row;
- KeywordID keyword_id;
- base::string16 term;
-};
-
// Details for HISTORY_KEYWORD_SEARCH_TERM_DELETED.
struct KeywordSearchDeletedDetails : public HistoryDetails {
explicit KeywordSearchDeletedDetails(URLID url_row_id);

Powered by Google App Engine
This is Rietveld 408576698