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

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

Issue 623133002: replace OVERRIDE and FINAL with override and 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 d47438620c43890fe45bc345db5adaa5224f268e..2ce206ae48d17202885af628c6a612597ac2030d 100644
--- a/components/bookmarks/browser/bookmark_index_unittest.cc
+++ b/components/bookmarks/browser/bookmark_index_unittest.cc
@@ -31,11 +31,11 @@ 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; }
+ virtual bool SupportsTypedCountForNodes() override { return true; }
virtual void GetTypedCountForNodes(
const NodeSet& nodes,
- NodeTypedCountPairs* node_typed_count_pairs) OVERRIDE {
+ NodeTypedCountPairs* node_typed_count_pairs) override {
for (NodeSet::const_iterator it = nodes.begin(); it != nodes.end(); ++it) {
const BookmarkNode* node = *it;
std::map<GURL, int>::const_iterator found =

Powered by Google App Engine
This is Rietveld 408576698