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

Unified Diff: ui/gfx/display_change_notifier_unittest.cc

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
« no previous file with comments | « ui/gfx/color_analysis_unittest.cc ('k') | ui/gfx/font_fallback_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/display_change_notifier_unittest.cc
diff --git a/ui/gfx/display_change_notifier_unittest.cc b/ui/gfx/display_change_notifier_unittest.cc
index 769c77063e933929b7d3998226227799c06b2a7a..700793a051e40b234244246b7e63456118292a4d 100644
--- a/ui/gfx/display_change_notifier_unittest.cc
+++ b/ui/gfx/display_change_notifier_unittest.cc
@@ -21,16 +21,16 @@ class MockDisplayObserver : public DisplayObserver {
virtual ~MockDisplayObserver() { }
- virtual void OnDisplayAdded(const Display& display) OVERRIDE {
+ virtual void OnDisplayAdded(const Display& display) override {
display_added_++;
}
- virtual void OnDisplayRemoved(const Display& display) OVERRIDE {
+ virtual void OnDisplayRemoved(const Display& display) override {
display_removed_++;
}
virtual void OnDisplayMetricsChanged(const Display& display,
- uint32_t metrics) OVERRIDE {
+ uint32_t metrics) override {
display_changed_++;
latest_metrics_change_ = metrics;
}
« no previous file with comments | « ui/gfx/color_analysis_unittest.cc ('k') | ui/gfx/font_fallback_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698