Chromium Code Reviews| Index: chrome/browser/history/history_backend.h |
| diff --git a/chrome/browser/history/history_backend.h b/chrome/browser/history/history_backend.h |
| index d0987e541af75e6c71a21cf38c88aa38b9cbf99b..00b04b219d116fd64a6d3c97f65db45e0763a9b0 100644 |
| --- a/chrome/browser/history/history_backend.h |
| +++ b/chrome/browser/history/history_backend.h |
| @@ -143,6 +143,11 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, |
| // be forwarded to the HistoryServiceObservers in the correct thread. |
| virtual void NotifyURLsModified(const URLRows& changed_urls) = 0; |
| + virtual void NotifyHistoryKeywordSearchTermUpdated( |
|
sdefresne
2014/12/24 09:03:43
style: please comment this method
Abhishek
2014/12/24 19:39:41
Done.
|
| + const URLRow& row, |
| + KeywordID keyword_id, |
| + const base::string16& term) = 0; |
| + |
| // Broadcasts the specified notification to the notification service. |
| // This is implemented here because notifications must only be sent from |
| // the main thread. This is the only method that doesn't identify the |