| 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..6702d7aa26a6f43989e4c010a9cc9d762535c958 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;
|
|
|