| Index: Source/core/events/MessageEvent.h
|
| diff --git a/Source/core/events/MessageEvent.h b/Source/core/events/MessageEvent.h
|
| index 185aa3c78c7e91daf2b1b7338b033468d7f8dd5a..56b7e6e40dbd52792a07375cb9b92371c77bc80e 100644
|
| --- a/Source/core/events/MessageEvent.h
|
| +++ b/Source/core/events/MessageEvent.h
|
| @@ -72,7 +72,7 @@ public:
|
| return adoptRefWillBeNoop(new MessageEvent(data, origin));
|
| }
|
| static PassRefPtrWillBeRawPtr<MessageEvent> create(const AtomicString& type, const MessageEventInit& initializer, ExceptionState&);
|
| - virtual ~MessageEvent();
|
| + ~MessageEvent() override;
|
|
|
| void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, ScriptValue data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePortArray*);
|
| void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePortArray*);
|
| @@ -84,7 +84,7 @@ public:
|
| MessagePortArray ports() const;
|
| MessagePortChannelArray* channels() const { return m_channels ? m_channels.get() : 0; }
|
|
|
| - virtual const AtomicString& interfaceName() const override;
|
| + const AtomicString& interfaceName() const override;
|
|
|
| enum DataType {
|
| DataTypeScriptValue,
|
| @@ -110,7 +110,7 @@ public:
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| - virtual v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN;
|
| + v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper) override WARN_UNUSED_RETURN;
|
|
|
| private:
|
| MessageEvent();
|
|
|