Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2196)

Unified Diff: Source/modules/geofencing/GeofencingEvent.h

Issue 639133002: Oilpan: fix build after r183426. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/modules/geofencing/GeofencingEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | Source/modules/geofencing/GeofencingEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698