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

Unified Diff: chrome/browser/android/provider/chrome_browser_provider.h

Issue 773103004: Remove NOTIFICATION_HISTORY_URLS_DELETED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed styling issue 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/android/provider/chrome_browser_provider.h
diff --git a/chrome/browser/android/provider/chrome_browser_provider.h b/chrome/browser/android/provider/chrome_browser_provider.h
index 49dc6cad36efecab1d72adf68f498fa52780765d..58582a26ae5d6f174833bbdb681db9e9b230f648 100644
--- a/chrome/browser/android/provider/chrome_browser_provider.h
+++ b/chrome/browser/android/provider/chrome_browser_provider.h
@@ -186,11 +186,16 @@ class ChromeBrowserProvider : public bookmarks::BaseBookmarkModelObserver,
void OnHistoryChanged();
// Override history::HistoryServiceObserver.
- virtual void OnURLVisited(HistoryService* history_service,
Miguel Garcia 2014/12/11 10:09:12 This method needs to remain virtual since it is ov
sdefresne 2014/12/11 10:48:06 miguelg: It is still virtual. But C++ style guide
- ui::PageTransition transition,
- const history::URLRow& row,
- const history::RedirectList& redirects,
- base::Time visit_time) override;
+ void OnURLVisited(HistoryService* history_service,
+ ui::PageTransition transition,
+ const history::URLRow& row,
+ const history::RedirectList& redirects,
+ base::Time visit_time) override;
+ void OnURLsDeleted(HistoryService* history_service,
Miguel Garcia 2014/12/11 10:09:12 and it probably makes sense to make this virtual t
sdefresne 2014/12/11 10:48:06 miguelg: See previous comment about "virtual", "ov
Miguel Garcia 2014/12/11 11:38:10 Yeah I missed the override bit, never mind.
nshaik 2014/12/12 05:40:55 Acknowledged.
+ bool all_history,
+ bool expired,
+ const history::URLRows& deleted_rows,
+ const std::set<GURL>& favicon_urls) override;
// Override content::NotificationObserver.
virtual void Observe(int type,

Powered by Google App Engine
This is Rietveld 408576698