| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h
|
| index d1744d2adcbfd392e315e8b864d15e2d7b5d9711..f65557804388fa42ec10d54f00a0360cc432dce2 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h
|
| @@ -16,11 +16,6 @@ namespace blink {
|
| class MODULES_EXPORT ServiceWorkerMessageEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static ServiceWorkerMessageEvent* create()
|
| - {
|
| - return new ServiceWorkerMessageEvent;
|
| - }
|
| -
|
| static ServiceWorkerMessageEvent* create(const AtomicString& type, const ServiceWorkerMessageEventInit& initializer)
|
| {
|
| return new ServiceWorkerMessageEvent(type, initializer);
|
| @@ -46,7 +41,6 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - ServiceWorkerMessageEvent();
|
| ServiceWorkerMessageEvent(const AtomicString& type, const ServiceWorkerMessageEventInit& initializer);
|
| ServiceWorkerMessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, ServiceWorker* source, MessagePortArray* ports);
|
|
|
|
|