Index: Source/modules/netinfo/NetworkInformation.h |
diff --git a/Source/modules/netinfo/NetworkInformation.h b/Source/modules/netinfo/NetworkInformation.h |
index 40d0b6d7ac0e26fdd90a7ef896c794ca089d18c4..9fd448774ea383f3eec41b5ab3f4d80bc2304689 100644 |
--- a/Source/modules/netinfo/NetworkInformation.h |
+++ b/Source/modules/netinfo/NetworkInformation.h |
@@ -23,22 +23,22 @@ class NetworkInformation final |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static NetworkInformation* create(ExecutionContext*); |
- virtual ~NetworkInformation(); |
+ ~NetworkInformation() override; |
String type() const; |
- virtual void connectionTypeChange(WebConnectionType) override; |
+ 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; |
+ const AtomicString& interfaceName() const override; |
+ ExecutionContext* executionContext() const override; |
+ bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override; |
+ bool removeEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override; |
+ void removeAllEventListeners() override; |
// ActiveDOMObject overrides. |
- virtual bool hasPendingActivity() const override; |
- virtual void stop() override; |
+ bool hasPendingActivity() const override; |
+ void stop() override; |
DECLARE_VIRTUAL_TRACE(); |