diff options
author | tapted <tapted@chromium.org> | 2015-01-14 11:10:45 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-14 19:11:53 +0000 |
commit | d76706534d9d60bab5496bed0ba6299ed0557a11 (patch) | |
tree | 52db4faa40c5f9bad65d8b029c483524a75feecf /ui/views/event_monitor_mac.h | |
parent | 27711f3e0c1061f6a81d0e5526f3a05b1fee33a4 (diff) | |
download | chromium_src-d76706534d9d60bab5496bed0ba6299ed0557a11.zip chromium_src-d76706534d9d60bab5496bed0ba6299ed0557a11.tar.gz chromium_src-d76706534d9d60bab5496bed0ba6299ed0557a11.tar.bz2 |
MacViews: Remove redundant virtuals in NativeWidgetMac and co.
Strict virtual annotation checks were enabled on Mac in r311365.
This gets toolkit_views for Mac on board.
BUG=417463
Review URL: https://codereview.chromium.org/850843003
Cr-Commit-Position: refs/heads/master@{#311528}
Diffstat (limited to 'ui/views/event_monitor_mac.h')
-rw-r--r-- | ui/views/event_monitor_mac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/views/event_monitor_mac.h b/ui/views/event_monitor_mac.h index f208ee4..270cdfe 100644 --- a/ui/views/event_monitor_mac.h +++ b/ui/views/event_monitor_mac.h @@ -15,7 +15,7 @@ class EventMonitorMac : public EventMonitor { public: EventMonitorMac(ui::EventHandler* event_handler, gfx::NativeWindow target_window); - virtual ~EventMonitorMac(); + ~EventMonitorMac() override; private: id monitor_; |