Index: Source/modules/netinfo/NetworkInformation.h |
diff --git a/Source/modules/netinfo/NetworkInformation.h b/Source/modules/netinfo/NetworkInformation.h |
index 2011dec0fbff5f482be69df311508ef18f292e81..627cf12c3e10aa2cc5c0dbc7a593548534e61231 100644 |
--- a/Source/modules/netinfo/NetworkInformation.h |
+++ b/Source/modules/netinfo/NetworkInformation.h |
@@ -14,7 +14,7 @@ namespace blink { |
class ExecutionContext; |
-class NetworkInformation FINAL |
+class NetworkInformation final |
: public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<NetworkInformation> |
, public ActiveDOMObject |
, public EventTargetWithInlineData |
@@ -28,18 +28,18 @@ public: |
String type() const; |
- virtual void connectionTypeChange(WebConnectionType) OVERRIDE; |
+ virtual void connectionTypeChange(WebConnectionType) override; |
// EventTarget overrides. |
- virtual const AtomicString& interfaceName() const OVERRIDE; |
- virtual ExecutionContext* executionContext() const OVERRIDE; |
- virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) OVERRIDE; |
- virtual bool removeEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) OVERRIDE; |
- virtual void removeAllEventListeners() OVERRIDE; |
+ virtual const AtomicString& interfaceName() const override; |
+ virtual ExecutionContext* executionContext() const override; |
+ virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override; |
+ virtual bool removeEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override; |
+ virtual void removeAllEventListeners() override; |
// ActiveDOMObject overrides. |
- virtual bool hasPendingActivity() const OVERRIDE; |
- virtual void stop() OVERRIDE; |
+ virtual bool hasPendingActivity() const override; |
+ virtual void stop() override; |
DEFINE_ATTRIBUTE_EVENT_LISTENER(typechange); |