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

Unified Diff: chrome/browser/ui/ash/ime_controller_chromeos_unittest.cc

Issue 857433003: Update {virtual,override,final} to follow C++11 style chrome/browser/ui. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix rebase Created 5 years, 11 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/ash/ime_controller_chromeos_unittest.cc
diff --git a/chrome/browser/ui/ash/ime_controller_chromeos_unittest.cc b/chrome/browser/ui/ash/ime_controller_chromeos_unittest.cc
index 63de4af0438b485fff9881b76d6480557dd8e871..39217f18b2f2ece5fce6cd826ddafda5f7e9ba49 100644
--- a/chrome/browser/ui/ash/ime_controller_chromeos_unittest.cc
+++ b/chrome/browser/ui/ash/ime_controller_chromeos_unittest.cc
@@ -15,16 +15,16 @@
class ImeControllerTest : public testing::Test {
public:
ImeControllerTest() : mock_input_method_manager_(NULL) {}
- virtual ~ImeControllerTest() {}
+ ~ImeControllerTest() override {}
- virtual void SetUp() override {
+ void SetUp() override {
mock_input_method_manager_ =
new chromeos::input_method::MockInputMethodManager;
chromeos::input_method::InitializeForTesting(
mock_input_method_manager_);
}
- virtual void TearDown() override {
+ void TearDown() override {
chromeos::input_method::Shutdown();
mock_input_method_manager_ = NULL;
}
« no previous file with comments | « chrome/browser/ui/ash/ime_controller_chromeos.h ('k') | chrome/browser/ui/ash/keyboard_controller_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698