| Index: third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h b/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
|
| index 786619c479cda881661da2c6a305697f444834cc..83ac4f98ed9b746963259d79349c4713463a81bb 100644
|
| --- a/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
|
| @@ -17,11 +17,6 @@ class ApplicationCacheErrorEvent final : public Event {
|
| public:
|
| ~ApplicationCacheErrorEvent() override;
|
|
|
| - static ApplicationCacheErrorEvent* create()
|
| - {
|
| - return new ApplicationCacheErrorEvent;
|
| - }
|
| -
|
| static ApplicationCacheErrorEvent* create(WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message)
|
| {
|
| return new ApplicationCacheErrorEvent(reason, url, status, message);
|
| @@ -42,7 +37,6 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - ApplicationCacheErrorEvent();
|
| ApplicationCacheErrorEvent(WebApplicationCacheHost::ErrorReason, const String& url, int status, const String& message);
|
| ApplicationCacheErrorEvent(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer);
|
|
|
|
|