| Index: components/bookmarks/browser/bookmark_utils_unittest.cc
|
| diff --git a/components/bookmarks/browser/bookmark_utils_unittest.cc b/components/bookmarks/browser/bookmark_utils_unittest.cc
|
| index be6aef6e9c6f4f7afb0cb58477dd1f05036c4a45..7a94080a4f94b666f8be64136cfdcb7598a2aa69 100644
|
| --- a/components/bookmarks/browser/bookmark_utils_unittest.cc
|
| +++ b/components/bookmarks/browser/bookmark_utils_unittest.cc
|
| @@ -32,7 +32,7 @@ class BookmarkUtilsTest : public testing::Test,
|
|
|
| // Copy and paste is not yet supported on iOS. http://crbug.com/228147
|
| #if !defined(OS_IOS)
|
| - virtual void TearDown() OVERRIDE {
|
| + virtual void TearDown() override {
|
| ui::Clipboard::DestroyClipboardForCurrentThread();
|
| }
|
| #endif // !defined(OS_IOS)
|
| @@ -54,13 +54,13 @@ class BookmarkUtilsTest : public testing::Test,
|
|
|
| private:
|
| // BaseBookmarkModelObserver:
|
| - virtual void BookmarkModelChanged() OVERRIDE {}
|
| + virtual void BookmarkModelChanged() override {}
|
|
|
| - virtual void GroupedBookmarkChangesBeginning(BookmarkModel* model) OVERRIDE {
|
| + virtual void GroupedBookmarkChangesBeginning(BookmarkModel* model) override {
|
| ++grouped_changes_beginning_count_;
|
| }
|
|
|
| - virtual void GroupedBookmarkChangesEnded(BookmarkModel* model) OVERRIDE {
|
| + virtual void GroupedBookmarkChangesEnded(BookmarkModel* model) override {
|
| ++grouped_changes_ended_count_;
|
| }
|
|
|
|
|