| Index: third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h b/third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h
|
| index 51fa9abbf5e4d94231835153ebacee34507161d3..2f8062cba906c4322ebf63c718e48c9938ee90d5 100644
|
| --- a/third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/AutocompleteErrorEvent.h
|
| @@ -33,19 +33,19 @@ namespace blink {
|
| class AutocompleteErrorEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create()
|
| + static RawPtr<AutocompleteErrorEvent> create()
|
| {
|
| return adoptRefWillBeNoop(new AutocompleteErrorEvent);
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const String& reason)
|
| + static RawPtr<AutocompleteErrorEvent> create(const String& reason)
|
| {
|
| - return adoptRefWillBeNoop(new AutocompleteErrorEvent(reason));
|
| + return new AutocompleteErrorEvent(reason);
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const AtomicString& eventType, const AutocompleteErrorEventInit& initializer)
|
| + static RawPtr<AutocompleteErrorEvent> create(const AtomicString& eventType, const AutocompleteErrorEventInit& initializer)
|
| {
|
| - return adoptRefWillBeNoop(new AutocompleteErrorEvent(eventType, initializer));
|
| + return new AutocompleteErrorEvent(eventType, initializer);
|
| }
|
|
|
| const String& reason() const { return m_reason; }
|
|
|