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

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

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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
Index: chrome/browser/chromeos/input_method/mode_indicator_controller.cc
diff --git a/chrome/browser/chromeos/input_method/mode_indicator_controller.cc b/chrome/browser/chromeos/input_method/mode_indicator_controller.cc
index 30bcc4ef6344b0964ab04c074494c98ffe332f36..3354ccf4d58fa66c4317adadeeba84305ecb9d14 100644
--- a/chrome/browser/chromeos/input_method/mode_indicator_controller.cc
+++ b/chrome/browser/chromeos/input_method/mode_indicator_controller.cc
@@ -31,7 +31,7 @@ class ModeIndicatorObserver : public ModeIndicatorObserverInterface {
// If other active mode indicator widget is shown, close it immedicately
// without fading animation. Then store this widget as the active widget.
- virtual void AddModeIndicatorWidget(views::Widget* widget) OVERRIDE {
+ virtual void AddModeIndicatorWidget(views::Widget* widget) override {
DCHECK(widget);
if (active_widget_)
active_widget_->Close();
@@ -40,7 +40,7 @@ class ModeIndicatorObserver : public ModeIndicatorObserverInterface {
}
// views::WidgetObserver override:
- virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE {
+ virtual void OnWidgetDestroying(views::Widget* widget) override {
if (widget == active_widget_)
active_widget_ = NULL;
}

Powered by Google App Engine
This is Rietveld 408576698