| Index: chrome/browser/history/chrome_history_client.h
|
| diff --git a/chrome/browser/history/chrome_history_client.h b/chrome/browser/history/chrome_history_client.h
|
| index 92f918609c7c6004b453b46268db77f605171449..bad2f0b6741c262916245aa8b9f55684e2bb90b9 100644
|
| --- a/chrome/browser/history/chrome_history_client.h
|
| +++ b/chrome/browser/history/chrome_history_client.h
|
| @@ -27,19 +27,19 @@ class ChromeHistoryClient : public history::HistoryClient,
|
| virtual ~ChromeHistoryClient();
|
|
|
| // history::HistoryClient:
|
| - virtual void BlockUntilBookmarksLoaded() OVERRIDE;
|
| - virtual bool IsBookmarked(const GURL& url) OVERRIDE;
|
| + virtual void BlockUntilBookmarksLoaded() override;
|
| + virtual bool IsBookmarked(const GURL& url) override;
|
| virtual void GetBookmarks(
|
| - std::vector<history::URLAndTitle>* bookmarks) OVERRIDE;
|
| - virtual void NotifyProfileError(sql::InitStatus init_status) OVERRIDE;
|
| - virtual bool ShouldReportDatabaseError() OVERRIDE;
|
| + std::vector<history::URLAndTitle>* bookmarks) override;
|
| + virtual void NotifyProfileError(sql::InitStatus init_status) override;
|
| + virtual bool ShouldReportDatabaseError() override;
|
|
|
| // KeyedService:
|
| - virtual void Shutdown() OVERRIDE;
|
| + virtual void Shutdown() override;
|
|
|
| // TopSitesObserver:
|
| - virtual void TopSitesLoaded(history::TopSites* top_sites) OVERRIDE;
|
| - virtual void TopSitesChanged(history::TopSites* top_sites) OVERRIDE;
|
| + virtual void TopSitesLoaded(history::TopSites* top_sites) override;
|
| + virtual void TopSitesChanged(history::TopSites* top_sites) override;
|
|
|
| private:
|
| // The BookmarkModel, this should outlive ChromeHistoryClient.
|
|
|