| 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 e71909d76ff3344b252fe64f235bd8295c3dbce3..fad86082f4a8ff2356c09e5de80c0cafe2d2ee31 100644
|
| --- a/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
|
| @@ -17,19 +17,19 @@ class ApplicationCacheErrorEvent final : public Event {
|
| public:
|
| ~ApplicationCacheErrorEvent() override;
|
|
|
| - static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create()
|
| + static RawPtr<ApplicationCacheErrorEvent> create()
|
| {
|
| return adoptRefWillBeNoop(new ApplicationCacheErrorEvent);
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message)
|
| + static RawPtr<ApplicationCacheErrorEvent> create(WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message)
|
| {
|
| - return adoptRefWillBeNoop(new ApplicationCacheErrorEvent(reason, url, status, message));
|
| + return new ApplicationCacheErrorEvent(reason, url, status, message);
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer)
|
| + static RawPtr<ApplicationCacheErrorEvent> create(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer)
|
| {
|
| - return adoptRefWillBeNoop(new ApplicationCacheErrorEvent(eventType, initializer));
|
| + return new ApplicationCacheErrorEvent(eventType, initializer);
|
| }
|
|
|
| const String& reason() const { return m_reason; }
|
|
|