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. |