| Index: third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h b/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
|
| index 01c152e8a4fdd6651548cff128ffcd3f39b89d27..2f4cfc7e4eb479711cdeffb33dd92e3bcb841a85 100644
|
| --- a/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
|
| +++ b/third_party/WebKit/Source/modules/geofencing/GeofencingEvent.h
|
| @@ -20,14 +20,14 @@ class GeofencingRegion;
|
| class MODULES_EXPORT GeofencingEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<GeofencingEvent> create()
|
| + static RawPtr<GeofencingEvent> create()
|
| {
|
| return adoptRefWillBeNoop(new GeofencingEvent);
|
| }
|
|
|
| - static PassRefPtrWillBeRawPtr<GeofencingEvent> create(const AtomicString& type, const String& id, GeofencingRegion* region)
|
| + static RawPtr<GeofencingEvent> create(const AtomicString& type, const String& id, GeofencingRegion* region)
|
| {
|
| - return adoptRefWillBeNoop(new GeofencingEvent(type, id, region));
|
| + return new GeofencingEvent(type, id, region);
|
| }
|
|
|
| ~GeofencingEvent() override;
|
| @@ -43,7 +43,7 @@ private:
|
| GeofencingEvent();
|
| GeofencingEvent(const AtomicString& type, const String& id, GeofencingRegion*);
|
| String m_id;
|
| - PersistentWillBeMember<GeofencingRegion> m_region;
|
| + Member<GeofencingRegion> m_region;
|
| };
|
|
|
| } // namespace blink
|
|
|