| Index: third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h b/third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h
|
| index 1a6681e714e0f24cfb73ae71a941b6804a96516f..7171c0d3d10564c6b421ff76d420648113f40963 100644
|
| --- a/third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/BeforeTextInsertedEvent.h
|
| @@ -34,9 +34,9 @@ class BeforeTextInsertedEvent final : public Event {
|
| public:
|
| ~BeforeTextInsertedEvent() override;
|
|
|
| - static PassRefPtrWillBeRawPtr<BeforeTextInsertedEvent> create(const String& text)
|
| + static RawPtr<BeforeTextInsertedEvent> create(const String& text)
|
| {
|
| - return adoptRefWillBeNoop(new BeforeTextInsertedEvent(text));
|
| + return new BeforeTextInsertedEvent(text);
|
| }
|
|
|
| const AtomicString& interfaceName() const override;
|
|
|