| Index: third_party/WebKit/Source/core/events/ResourceProgressEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/ResourceProgressEvent.h b/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
|
| index b6b41ce6ca0f6bcbc32579c5b6f5b95144ed9940..b9f727cd9d40e42107db9051ad2601d0a2b2fa21 100644
|
| --- a/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
|
| @@ -46,10 +46,6 @@ namespace blink {
|
| class CORE_EXPORT ResourceProgressEvent final : public ProgressEvent {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static ResourceProgressEvent* create()
|
| - {
|
| - return new ResourceProgressEvent;
|
| - }
|
| static ResourceProgressEvent* create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
|
| {
|
| return new ResourceProgressEvent(type, lengthComputable, loaded, total, url);
|
| @@ -62,7 +58,6 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| protected:
|
| - ResourceProgressEvent();
|
| ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url);
|
|
|
| private:
|
|
|