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

Unified Diff: Source/modules/device_orientation/DeviceMotionEvent.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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
Index: Source/modules/device_orientation/DeviceMotionEvent.h
diff --git a/Source/modules/device_orientation/DeviceMotionEvent.h b/Source/modules/device_orientation/DeviceMotionEvent.h
index c265257d1b45ee47787dd1c306d900398119b289..7e06710263fa08d1d274cbb78b8eb698e24ebd91 100644
--- a/Source/modules/device_orientation/DeviceMotionEvent.h
+++ b/Source/modules/device_orientation/DeviceMotionEvent.h
@@ -38,7 +38,7 @@ class DeviceRotationRate;
class DeviceMotionEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~DeviceMotionEvent();
+ ~DeviceMotionEvent() override;
static PassRefPtrWillBeRawPtr<DeviceMotionEvent> create()
{
return adoptRefWillBeNoop(new DeviceMotionEvent);
@@ -57,7 +57,7 @@ public:
DeviceRotationRate* rotationRate();
double interval(bool& isNull) const;
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698