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

Unified Diff: components/bookmarks/browser/bookmark_index_unittest.cc

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
Index: components/bookmarks/browser/bookmark_index_unittest.cc
diff --git a/components/bookmarks/browser/bookmark_index_unittest.cc b/components/bookmarks/browser/bookmark_index_unittest.cc
index fa7e46add681e65f667855d5664c78ccb84273f4..90168ffbcc7c566b0ee19da7ef94077906394e79 100644
--- a/components/bookmarks/browser/bookmark_index_unittest.cc
+++ b/components/bookmarks/browser/bookmark_index_unittest.cc
@@ -31,9 +31,9 @@ class BookmarkClientMock : public TestBookmarkClient {
BookmarkClientMock(const std::map<GURL, int>& typed_count_map)
: typed_count_map_(typed_count_map) {}
- virtual bool SupportsTypedCountForNodes() override { return true; }
+ bool SupportsTypedCountForNodes() override { return true; }
- virtual void GetTypedCountForNodes(
+ void GetTypedCountForNodes(
const NodeSet& nodes,
NodeTypedCountPairs* node_typed_count_pairs) override {
for (NodeSet::const_iterator it = nodes.begin(); it != nodes.end(); ++it) {
« no previous file with comments | « components/bookmarks/browser/bookmark_expanded_state_tracker.h ('k') | components/bookmarks/browser/bookmark_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698