Index: content/browser/renderer_host/input/touch_emulator.h |
diff --git a/content/browser/renderer_host/input/touch_emulator.h b/content/browser/renderer_host/input/touch_emulator.h |
index 7cadc52ee256af1fa366908b6600246454e2d050..c364eb9fdca7c775168dfc907d3bf3fc6f7e27e9 100644 |
--- a/content/browser/renderer_host/input/touch_emulator.h |
+++ b/content/browser/renderer_host/input/touch_emulator.h |
@@ -18,7 +18,7 @@ namespace content { |
class CONTENT_EXPORT TouchEmulator : public ui::GestureProviderClient { |
public: |
explicit TouchEmulator(TouchEmulatorClient* client); |
- virtual ~TouchEmulator(); |
+ ~TouchEmulator() override; |
void Enable(); |
void Disable(); |
@@ -45,7 +45,7 @@ class CONTENT_EXPORT TouchEmulator : public ui::GestureProviderClient { |
private: |
// ui::GestureProviderClient implementation. |
- virtual void OnGestureEvent(const ui::GestureEventData& gesture) override; |
+ void OnGestureEvent(const ui::GestureEventData& gesture) override; |
// Returns cursor size in DIP. |
gfx::SizeF InitCursorFromResource( |