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

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

Issue 681823004: Standardize usage of virtual/override/final specifiers. (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 e150836dc6736e9161d889c88d69e8f1b6813499..1d44df9960805445febe868b680f235d18c1af37 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 {
+ void SetUp() override {
if (simulate_load_failure_)
util_.model()->OnWebDataServiceRequestDone(0, NULL);
else
@@ -55,9 +55,7 @@ class KeywordEditorControllerTest : public testing::Test,
controller_->table_model()->SetObserver(this);
}
- virtual void TearDown() override {
- controller_.reset();
- }
+ void TearDown() override { controller_.reset(); }
void OnModelChanged() override { model_changed_count_++; }
« no previous file with comments | « chrome/browser/ui/search/search_tab_helper_unittest.cc ('k') | chrome/browser/ui/settings_window_manager_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698