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

Unified Diff: athena/util/drag_handle_unittest.cc

Issue 623103002: replace OVERRIDE and FINAL with override and final in athena/ (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 | « athena/util/drag_handle.cc ('k') | athena/util/fill_layout_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/util/drag_handle_unittest.cc
diff --git a/athena/util/drag_handle_unittest.cc b/athena/util/drag_handle_unittest.cc
index 42eadefaa1e9d9922e25cd0c4446497c4cf31a2d..16f152ef2eaa3b9f236d734fd988c4a90818b7f4 100644
--- a/athena/util/drag_handle_unittest.cc
+++ b/athena/util/drag_handle_unittest.cc
@@ -32,15 +32,15 @@ class DragHandleDelegateTest : public DragHandleScrollDelegate {
private:
// DragHandleScrollDelegate:
- virtual void HandleScrollBegin(float delta) OVERRIDE {
+ virtual void HandleScrollBegin(float delta) override {
begin_delta_ = delta;
}
- virtual void HandleScrollEnd() OVERRIDE {
+ virtual void HandleScrollEnd() override {
got_scroll_end_ = true;
}
- virtual void HandleScrollUpdate(float delta) OVERRIDE {
+ virtual void HandleScrollUpdate(float delta) override {
update_delta_ = delta;
}
« no previous file with comments | « athena/util/drag_handle.cc ('k') | athena/util/fill_layout_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698