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

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

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 | « Source/modules/geofencing/GeofencingEvent.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geofencing/GeofencingEvent.cpp
diff --git a/Source/modules/geofencing/GeofencingEvent.cpp b/Source/modules/geofencing/GeofencingEvent.cpp
index eb8a91d11bd964f97616851e935d6d8196b5dcef..f1fd3bb24639a6964899f9e987d8ae367da7cf26 100644
--- a/Source/modules/geofencing/GeofencingEvent.cpp
+++ b/Source/modules/geofencing/GeofencingEvent.cpp
@@ -22,6 +22,12 @@ GeofencingEvent::~GeofencingEvent()
{
}
+void GeofencingEvent::trace(Visitor* visitor)
+{
+ visitor->trace(m_region);
+ Event::trace(visitor);
+}
+
const AtomicString& GeofencingEvent::interfaceName() const
{
return EventNames::GeofencingEvent;
« no previous file with comments | « Source/modules/geofencing/GeofencingEvent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698