Index: ui/aura/window_tree_host_x11.cc |
diff --git a/ui/aura/window_tree_host_x11.cc b/ui/aura/window_tree_host_x11.cc |
index 06c3a3f381c92b8533ba5c4d52f05d6f08b2ae1b..2ecc5a5987651ed4827dd6e2c9cd39d58301efb6 100644 |
--- a/ui/aura/window_tree_host_x11.cc |
+++ b/ui/aura/window_tree_host_x11.cc |
@@ -133,7 +133,7 @@ class TouchEventCalibrate : public ui::PlatformEventObserver { |
#endif // defined(USE_XI2_MT) |
} |
- virtual ~TouchEventCalibrate() { |
+ ~TouchEventCalibrate() override { |
if (ui::PlatformEventSource::GetInstance()) |
ui::PlatformEventSource::GetInstance()->RemovePlatformEventObserver(this); |
} |
@@ -202,7 +202,7 @@ class TouchEventCalibrate : public ui::PlatformEventObserver { |
private: |
// ui::PlatformEventObserver: |
- virtual void WillProcessEvent(const ui::PlatformEvent& event) override { |
+ void WillProcessEvent(const ui::PlatformEvent& event) override { |
#if defined(USE_XI2_MT) |
if (event->type == GenericEvent && |
(event->xgeneric.evtype == XI_TouchBegin || |
@@ -216,7 +216,7 @@ class TouchEventCalibrate : public ui::PlatformEventObserver { |
#endif // defined(USE_XI2_MT) |
} |
- virtual void DidProcessEvent(const ui::PlatformEvent& event) override {} |
+ void DidProcessEvent(const ui::PlatformEvent& event) override {} |
// The difference in screen's native resolution pixels between |
// the border of the touchscreen and the border of the screen, |