Index: Source/modules/geofencing/GeofencingEvent.h |
diff --git a/Source/modules/geofencing/GeofencingEvent.h b/Source/modules/geofencing/GeofencingEvent.h |
index 33ae8502c1cb25e04ec46312c96c79ce8bc9e798..557c3721ea9903a04ecc1bc3ae7651f9b74231e9 100644 |
--- a/Source/modules/geofencing/GeofencingEvent.h |
+++ b/Source/modules/geofencing/GeofencingEvent.h |
@@ -16,19 +16,21 @@ namespace blink { |
class GeofencingRegion; |
// FIXME: This should derive from ExtendableEvent. |
-class GeofencingEvent FINAL : public Event { |
+class GeofencingEvent final : public Event { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtrWillBeRawPtr<GeofencingEvent> create() |
{ |
return adoptRefWillBeNoop(new GeofencingEvent); |
} |
+ |
static PassRefPtrWillBeRawPtr<GeofencingEvent> create(const AtomicString& type, const String& id, GeofencingRegion* region) |
{ |
return adoptRefWillBeNoop(new GeofencingEvent(type, id, region)); |
} |
virtual ~GeofencingEvent(); |
+ virtual void trace(Visitor*) override; |
virtual const AtomicString& interfaceName() const override; |