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

Unified Diff: ui/events/test/events_test_utils.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/latency_info.cc ('k') | ui/events/test/mock_motion_event.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/test/events_test_utils.h
diff --git a/ui/events/test/events_test_utils.h b/ui/events/test/events_test_utils.h
index 3ed6fa36207a1970b61c3f33ef153a578f4c1ae5..d4b704a48531da69dd2a7010da9444141d38edce 100644
--- a/ui/events/test/events_test_utils.h
+++ b/ui/events/test/events_test_utils.h
@@ -37,7 +37,7 @@ class EventTestApi {
class LocatedEventTestApi : public EventTestApi {
public:
explicit LocatedEventTestApi(LocatedEvent* located_event);
- virtual ~LocatedEventTestApi();
+ ~LocatedEventTestApi() override;
void set_location(const gfx::Point& location) {
located_event_->location_ = location;
@@ -54,7 +54,7 @@ class LocatedEventTestApi : public EventTestApi {
class KeyEventTestApi : public EventTestApi {
public:
explicit KeyEventTestApi(KeyEvent* key_event);
- virtual ~KeyEventTestApi();
+ ~KeyEventTestApi() override;
void set_is_char(bool is_char) {
key_event_->set_is_char(is_char);
« no previous file with comments | « ui/events/latency_info.cc ('k') | ui/events/test/mock_motion_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698