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

Unified Diff: chrome/browser/chromeos/input_method/mode_indicator_controller.h

Issue 796693005: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/input_method. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/chromeos/input_method/mode_indicator_controller.h
diff --git a/chrome/browser/chromeos/input_method/mode_indicator_controller.h b/chrome/browser/chromeos/input_method/mode_indicator_controller.h
index c85c8131224c41bad78bf8a8d4be79fba2991195..ad6e9051c006e5d4d7bddbdc076e272409c4d369 100644
--- a/chrome/browser/chromeos/input_method/mode_indicator_controller.h
+++ b/chrome/browser/chromeos/input_method/mode_indicator_controller.h
@@ -16,7 +16,7 @@ namespace input_method {
class ModeIndicatorObserverInterface : public views::WidgetObserver {
public:
ModeIndicatorObserverInterface() {}
- virtual ~ModeIndicatorObserverInterface() {}
+ ~ModeIndicatorObserverInterface() override {}
virtual void AddModeIndicatorWidget(views::Widget* widget) = 0;
};
@@ -29,7 +29,7 @@ class ModeIndicatorController
public:
// This class takes the ownership of |mi_widget|.
explicit ModeIndicatorController(InputMethodManager* imm);
- virtual ~ModeIndicatorController();
+ ~ModeIndicatorController() override;
// Set cursor bounds, which is the base point to display this indicator.
// Bacisally this indicator is displayed underneath the cursor.
@@ -46,8 +46,8 @@ class ModeIndicatorController
private:
// InputMethodManager::Observer implementation.
- virtual void InputMethodChanged(InputMethodManager* manager,
- bool show_message) override;
+ void InputMethodChanged(InputMethodManager* manager,
+ bool show_message) override;
// Show the mode inidicator with the current ime's short name if all
// the conditions are cleared.

Powered by Google App Engine
This is Rietveld 408576698