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

Unified Diff: chrome/browser/chromeos/login/ui/input_events_blocker.h

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/login/ui/input_events_blocker.h
diff --git a/chrome/browser/chromeos/login/ui/input_events_blocker.h b/chrome/browser/chromeos/login/ui/input_events_blocker.h
index 6f8060c9bcfd4c7582e47630464889f3f4ea93c6..82efb87e4c17401e124a2ed5968c7930b3b58412 100644
--- a/chrome/browser/chromeos/login/ui/input_events_blocker.h
+++ b/chrome/browser/chromeos/login/ui/input_events_blocker.h
@@ -18,10 +18,10 @@ class InputEventsBlocker : public ui::EventHandler {
InputEventsBlocker();
virtual ~InputEventsBlocker();
- virtual void OnKeyEvent(ui::KeyEvent* event) OVERRIDE;
- virtual void OnMouseEvent(ui::MouseEvent* event) OVERRIDE;
- virtual void OnTouchEvent(ui::TouchEvent* event) OVERRIDE;
- virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
+ virtual void OnKeyEvent(ui::KeyEvent* event) override;
+ virtual void OnMouseEvent(ui::MouseEvent* event) override;
+ virtual void OnTouchEvent(ui::TouchEvent* event) override;
+ virtual void OnGestureEvent(ui::GestureEvent* event) override;
private:
DISALLOW_COPY_AND_ASSIGN(InputEventsBlocker);

Powered by Google App Engine
This is Rietveld 408576698