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

Unified Diff: ash/ime/input_method_menu_manager_unittest.cc

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (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
« no previous file with comments | « ash/ime/infolist_window.cc ('k') | ash/ime/mode_indicator_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/ime/input_method_menu_manager_unittest.cc
diff --git a/ash/ime/input_method_menu_manager_unittest.cc b/ash/ime/input_method_menu_manager_unittest.cc
index ba920016228dabdd323e7df841e7a7cefff43da2..e843cf37bed524f6d3f53a98d8d94016e2ec788b 100644
--- a/ash/ime/input_method_menu_manager_unittest.cc
+++ b/ash/ime/input_method_menu_manager_unittest.cc
@@ -22,7 +22,7 @@ class MockObserver : public InputMethodMenuManager::Observer {
// Called when the list of menu items is changed.
virtual void InputMethodMenuItemChanged(
- InputMethodMenuManager* manager) OVERRIDE {
+ InputMethodMenuManager* manager) override {
input_method_menu_item_changed_count_++;
}
int input_method_menu_item_changed_count_;
@@ -33,12 +33,12 @@ class InputMethodMenuManagerStatefulTest : public testing::Test{
InputMethodMenuManagerStatefulTest()
: observer_(new MockObserver()) {}
virtual ~InputMethodMenuManagerStatefulTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
menu_manager_ = InputMethodMenuManager::GetInstance();
menu_manager_->AddObserver(observer_.get());
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
menu_manager_->RemoveObserver(observer_.get());
}
« no previous file with comments | « ash/ime/infolist_window.cc ('k') | ash/ime/mode_indicator_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698