| Index: third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h
|
| diff --git a/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h b/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h
|
| index bd4357df64b524bd93fac6b47f9916a403fa84f6..da7407242133e4d68f8a047eedabb45ede1d83b7 100644
|
| --- a/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h
|
| +++ b/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h
|
| @@ -43,17 +43,17 @@ namespace blink {
|
| class FontFaceSetLoadEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static RawPtr<FontFaceSetLoadEvent> create()
|
| + static FontFaceSetLoadEvent* create()
|
| {
|
| return new FontFaceSetLoadEvent();
|
| }
|
|
|
| - static RawPtr<FontFaceSetLoadEvent> create(const AtomicString& type, const FontFaceSetLoadEventInit& initializer)
|
| + static FontFaceSetLoadEvent* create(const AtomicString& type, const FontFaceSetLoadEventInit& initializer)
|
| {
|
| return new FontFaceSetLoadEvent(type, initializer);
|
| }
|
|
|
| - static RawPtr<FontFaceSetLoadEvent> createForFontFaces(const AtomicString& type, const FontFaceArray& fontfaces = FontFaceArray())
|
| + static FontFaceSetLoadEvent* createForFontFaces(const AtomicString& type, const FontFaceArray& fontfaces = FontFaceArray())
|
| {
|
| return new FontFaceSetLoadEvent(type, fontfaces);
|
| }
|
|
|