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

Unified Diff: ui/events/test/mock_motion_event.h

Issue 667923002: Standardize usage of virtual/override/final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/events/test/events_test_utils.h ('k') | ui/events/test/platform_event_waiter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/test/mock_motion_event.h
diff --git a/ui/events/test/mock_motion_event.h b/ui/events/test/mock_motion_event.h
index 5c34b71a365288deaa7604ffba44210a111e8dd7..d04d7154eab7f90b0ee13541d4951cc83519e666 100644
--- a/ui/events/test/mock_motion_event.h
+++ b/ui/events/test/mock_motion_event.h
@@ -37,11 +37,11 @@ struct MockMotionEvent : public MotionEventGeneric {
const std::vector<gfx::PointF>& positions);
MockMotionEvent(const MockMotionEvent& other);
- virtual ~MockMotionEvent();
+ ~MockMotionEvent() override;
// MotionEvent methods.
- virtual scoped_ptr<MotionEvent> Clone() const override;
- virtual scoped_ptr<MotionEvent> Cancel() const override;
+ scoped_ptr<MotionEvent> Clone() const override;
+ scoped_ptr<MotionEvent> Cancel() const override;
// Utility methods.
void PressPoint(float x, float y);
« no previous file with comments | « ui/events/test/events_test_utils.h ('k') | ui/events/test/platform_event_waiter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698