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

Unified Diff: chrome/browser/undo/bookmark_undo_service.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 | « chrome/browser/undo/bookmark_undo_service.h ('k') | chrome/browser/undo/bookmark_undo_service_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/undo/bookmark_undo_service.cc
diff --git a/chrome/browser/undo/bookmark_undo_service.cc b/chrome/browser/undo/bookmark_undo_service.cc
index 987f6855a05949b638c3d696d733a439dd05ef1d..ff7f44f3d525b1caf58470f1bee89cc0a09e895b 100644
--- a/chrome/browser/undo/bookmark_undo_service.cc
+++ b/chrome/browser/undo/bookmark_undo_service.cc
@@ -58,12 +58,12 @@ class BookmarkAddOperation : public BookmarkUndoOperation {
virtual ~BookmarkAddOperation() {}
// UndoOperation:
- virtual void Undo() OVERRIDE;
- virtual int GetUndoLabelId() const OVERRIDE;
- virtual int GetRedoLabelId() const OVERRIDE;
+ virtual void Undo() override;
+ virtual int GetUndoLabelId() const override;
+ virtual int GetRedoLabelId() const override;
// BookmarkRenumberObserver:
- virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) OVERRIDE;
+ virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) override;
private:
int64 parent_id_;
@@ -117,12 +117,12 @@ class BookmarkRemoveOperation : public BookmarkUndoOperation {
virtual ~BookmarkRemoveOperation() {}
// UndoOperation:
- virtual void Undo() OVERRIDE;
- virtual int GetUndoLabelId() const OVERRIDE;
- virtual int GetRedoLabelId() const OVERRIDE;
+ virtual void Undo() override;
+ virtual int GetUndoLabelId() const override;
+ virtual int GetRedoLabelId() const override;
// BookmarkRenumberObserver:
- virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) OVERRIDE;
+ virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) override;
private:
void UpdateBookmarkIds(const BookmarkNodeData::Element& element,
@@ -194,12 +194,12 @@ class BookmarkEditOperation : public BookmarkUndoOperation {
virtual ~BookmarkEditOperation() {}
// UndoOperation:
- virtual void Undo() OVERRIDE;
- virtual int GetUndoLabelId() const OVERRIDE;
- virtual int GetRedoLabelId() const OVERRIDE;
+ virtual void Undo() override;
+ virtual int GetUndoLabelId() const override;
+ virtual int GetRedoLabelId() const override;
// BookmarkRenumberObserver:
- virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) OVERRIDE;
+ virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) override;
private:
int64 node_id_;
@@ -250,14 +250,14 @@ class BookmarkMoveOperation : public BookmarkUndoOperation {
const BookmarkNode* new_parent,
int new_index);
virtual ~BookmarkMoveOperation() {}
- virtual int GetUndoLabelId() const OVERRIDE;
- virtual int GetRedoLabelId() const OVERRIDE;
+ virtual int GetUndoLabelId() const override;
+ virtual int GetRedoLabelId() const override;
// UndoOperation:
- virtual void Undo() OVERRIDE;
+ virtual void Undo() override;
// BookmarkRenumberObserver:
- virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) OVERRIDE;
+ virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) override;
private:
int64 old_parent_id_;
@@ -329,12 +329,12 @@ class BookmarkReorderOperation : public BookmarkUndoOperation {
virtual ~BookmarkReorderOperation();
// UndoOperation:
- virtual void Undo() OVERRIDE;
- virtual int GetUndoLabelId() const OVERRIDE;
- virtual int GetRedoLabelId() const OVERRIDE;
+ virtual void Undo() override;
+ virtual int GetUndoLabelId() const override;
+ virtual int GetRedoLabelId() const override;
// BookmarkRenumberObserver:
- virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) OVERRIDE;
+ virtual void OnBookmarkRenumbered(int64 old_id, int64 new_id) override;
private:
int64 parent_id_;
« no previous file with comments | « chrome/browser/undo/bookmark_undo_service.h ('k') | chrome/browser/undo/bookmark_undo_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698