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

Unified Diff: components/history/core/test/history_client_fake_bookmarks.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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
« no previous file with comments | « components/history/core/browser/url_row.h ('k') | components/infobars/core/confirm_infobar_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/history/core/test/history_client_fake_bookmarks.h
diff --git a/components/history/core/test/history_client_fake_bookmarks.h b/components/history/core/test/history_client_fake_bookmarks.h
index b4afeb15979ec1a899f1a855e62c49746b232898..ee5c5409c8b6e62bebebeaa2a34fd5cecd041d58 100644
--- a/components/history/core/test/history_client_fake_bookmarks.h
+++ b/components/history/core/test/history_client_fake_bookmarks.h
@@ -16,7 +16,7 @@ namespace history {
class HistoryClientFakeBookmarks : public HistoryClient {
public:
HistoryClientFakeBookmarks();
- virtual ~HistoryClientFakeBookmarks();
+ ~HistoryClientFakeBookmarks() override;
void ClearAllBookmarks();
void AddBookmark(const GURL& url);
@@ -24,8 +24,8 @@ class HistoryClientFakeBookmarks : public HistoryClient {
void DelBookmark(const GURL& url);
// HistoryClient:
- virtual bool IsBookmarked(const GURL& url) override;
- virtual void GetBookmarks(std::vector<URLAndTitle>* bookmarks) override;
+ bool IsBookmarked(const GURL& url) override;
+ void GetBookmarks(std::vector<URLAndTitle>* bookmarks) override;
private:
std::map<GURL, base::string16> bookmarks_;
« no previous file with comments | « components/history/core/browser/url_row.h ('k') | components/infobars/core/confirm_infobar_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698