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) { |