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

Unified Diff: ui/v2/src/view_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/v2/src/view.cc ('k') | ui/views/accessibility/ax_view_obj_wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/v2/src/view_unittest.cc
diff --git a/ui/v2/src/view_unittest.cc b/ui/v2/src/view_unittest.cc
index c0253ed0d2600d8962d156aec581738dee696467..b2971fac1fe89890ebff05d7bde2a0c73cdf2855 100644
--- a/ui/v2/src/view_unittest.cc
+++ b/ui/v2/src/view_unittest.cc
@@ -138,7 +138,7 @@ class TreeChangeObserver : public ViewObserver {
private:
// Overridden from ViewObserver:
- virtual void OnViewTreeChange(const TreeChangeParams& params) OVERRIDE {
+ virtual void OnViewTreeChange(const TreeChangeParams& params) override {
received_params_.push_back(params);
}
@@ -394,7 +394,7 @@ class VisibilityObserver : public ViewObserver {
// Overridden from ViewObserver:
virtual void OnViewVisibilityChange(
View* view,
- ViewObserver::DispositionChangePhase phase) OVERRIDE {
+ ViewObserver::DispositionChangePhase phase) override {
DCHECK_EQ(view_, view);
log_entries_.push_back(std::make_pair(phase, view->visible()));
}
@@ -436,7 +436,7 @@ class BoundsObserver : public ViewObserver {
private:
virtual void OnViewBoundsChanged(View* view,
const gfx::Rect& old_bounds,
- const gfx::Rect& new_bounds) OVERRIDE {
+ const gfx::Rect& new_bounds) override {
DCHECK_EQ(view_, view);
bounds_changes_.push_back(std::make_pair(old_bounds, new_bounds));
}
« no previous file with comments | « ui/v2/src/view.cc ('k') | ui/views/accessibility/ax_view_obj_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698