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

Unified Diff: chrome/browser/ui/search_engines/keyword_editor_controller_unittest.cc

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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: chrome/browser/ui/search_engines/keyword_editor_controller_unittest.cc
diff --git a/chrome/browser/ui/search_engines/keyword_editor_controller_unittest.cc b/chrome/browser/ui/search_engines/keyword_editor_controller_unittest.cc
index 58d3e6ad018c3b8168fbb6ccc7d38ef0096c8a0c..73ff82c4802f5a2b04105953fddcd40c8237c596 100644
--- a/chrome/browser/ui/search_engines/keyword_editor_controller_unittest.cc
+++ b/chrome/browser/ui/search_engines/keyword_editor_controller_unittest.cc
@@ -45,7 +45,7 @@ class KeywordEditorControllerTest : public testing::Test,
added_count_(0),
removed_count_(0) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
if (simulate_load_failure_)
util_.model()->OnWebDataServiceRequestDone(0, NULL);
else
@@ -55,23 +55,23 @@ class KeywordEditorControllerTest : public testing::Test,
controller_->table_model()->SetObserver(this);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
controller_.reset();
}
- virtual void OnModelChanged() OVERRIDE {
+ virtual void OnModelChanged() override {
model_changed_count_++;
}
- virtual void OnItemsChanged(int start, int length) OVERRIDE {
+ virtual void OnItemsChanged(int start, int length) override {
items_changed_count_++;
}
- virtual void OnItemsAdded(int start, int length) OVERRIDE {
+ virtual void OnItemsAdded(int start, int length) override {
added_count_++;
}
- virtual void OnItemsRemoved(int start, int length) OVERRIDE {
+ virtual void OnItemsRemoved(int start, int length) override {
removed_count_++;
}
« no previous file with comments | « chrome/browser/ui/search/search_tab_helper_unittest.cc ('k') | chrome/browser/ui/search_engines/search_engine_tab_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698