| Index: third_party/WebKit/Source/core/events/HashChangeEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/HashChangeEvent.h b/third_party/WebKit/Source/core/events/HashChangeEvent.h
|
| index 0f3dc20c03997190749e0b667bb1e383e9668ca6..80c5d963b137e691ec749b943d466a0128e5bfb6 100644
|
| --- a/third_party/WebKit/Source/core/events/HashChangeEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/HashChangeEvent.h
|
| @@ -29,19 +29,19 @@ namespace blink {
|
| class HashChangeEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<HashChangeEvent> create()
|
| + static RawPtr<HashChangeEvent> create()
|
| {
|
| return adoptRefWillBeNoop(new HashChangeEvent);
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const String& oldURL, const String& newURL)
|
| + static RawPtr<HashChangeEvent> create(const String& oldURL, const String& newURL)
|
| {
|
| - return adoptRefWillBeNoop(new HashChangeEvent(oldURL, newURL));
|
| + return new HashChangeEvent(oldURL, newURL);
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const AtomicString& type, const HashChangeEventInit& initializer)
|
| + static RawPtr<HashChangeEvent> create(const AtomicString& type, const HashChangeEventInit& initializer)
|
| {
|
| - return adoptRefWillBeNoop(new HashChangeEvent(type, initializer));
|
| + return new HashChangeEvent(type, initializer);
|
| }
|
|
|
| const String& oldURL() const { return m_oldURL; }
|
|
|