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

Unified Diff: ui/base/ime/chromeos/ime_keyboard_x11_unittest.cc

Issue 1081103008: Update {virtual,override} to follow C++11 style in ui. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « ui/aura/window_tree_host_mac.h ('k') | ui/base/models/tree_node_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/chromeos/ime_keyboard_x11_unittest.cc
diff --git a/ui/base/ime/chromeos/ime_keyboard_x11_unittest.cc b/ui/base/ime/chromeos/ime_keyboard_x11_unittest.cc
index 358eab7a5d35820984b2e005a31ec2dce41a464b..d746b639ae66eb42ac486b012ebd9a9e1c961fc1 100644
--- a/ui/base/ime/chromeos/ime_keyboard_x11_unittest.cc
+++ b/ui/base/ime/chromeos/ime_keyboard_x11_unittest.cc
@@ -27,18 +27,18 @@ class ImeKeyboardTest : public testing::Test,
ImeKeyboardTest() {
}
- virtual void SetUp() {
+ void SetUp() override {
xkey_.reset(ImeKeyboard::Create());
xkey_->AddObserver(this);
caps_changed_ = false;
}
- virtual void TearDown() {
+ void TearDown() override {
xkey_->RemoveObserver(this);
xkey_.reset();
}
- virtual void OnCapsLockChanged(bool enabled) override {
+ void OnCapsLockChanged(bool enabled) override {
caps_changed_ = true;
}
« no previous file with comments | « ui/aura/window_tree_host_mac.h ('k') | ui/base/models/tree_node_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698