| Index: third_party/WebKit/Source/core/events/ProgressEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/ProgressEvent.h b/third_party/WebKit/Source/core/events/ProgressEvent.h
|
| index 241445c1835089050bbe6c27f6b528c7c5a4370f..608b0095c3ec69bf5f49a6bcb2e4e65c4fcfc610 100644
|
| --- a/third_party/WebKit/Source/core/events/ProgressEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/ProgressEvent.h
|
| @@ -35,17 +35,17 @@ namespace blink {
|
| class CORE_EXPORT ProgressEvent : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<ProgressEvent> create()
|
| + static RawPtr<ProgressEvent> create()
|
| {
|
| return adoptRefWillBeNoop(new ProgressEvent);
|
| }
|
| - static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
|
| + static RawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
|
| {
|
| - return adoptRefWillBeNoop(new ProgressEvent(type, lengthComputable, loaded, total));
|
| + return new ProgressEvent(type, lengthComputable, loaded, total);
|
| }
|
| - static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer)
|
| + static RawPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer)
|
| {
|
| - return adoptRefWillBeNoop(new ProgressEvent(type, initializer));
|
| + return new ProgressEvent(type, initializer);
|
| }
|
|
|
| bool lengthComputable() const { return m_lengthComputable; }
|
|
|