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

Unified Diff: Source/modules/device_orientation/DeviceOrientationEvent.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/DeviceOrientationEvent.h
diff --git a/Source/modules/device_orientation/DeviceOrientationEvent.h b/Source/modules/device_orientation/DeviceOrientationEvent.h
index 431fcfeb9161609f2ad1c453c6fd855b39389d06..48aa6c793bc6b77866231fe4d4c2fe90f30a77f7 100644
--- a/Source/modules/device_orientation/DeviceOrientationEvent.h
+++ b/Source/modules/device_orientation/DeviceOrientationEvent.h
@@ -37,7 +37,7 @@ class DeviceOrientationData;
class DeviceOrientationEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~DeviceOrientationEvent();
+ ~DeviceOrientationEvent() override;
static PassRefPtrWillBeRawPtr<DeviceOrientationEvent> create()
{
return adoptRefWillBeNoop(new DeviceOrientationEvent);
@@ -56,7 +56,7 @@ public:
double gamma(bool& isNull) const;
bool absolute(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