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

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

Issue 623813002: Blink side of exposing the service worker registration associated with geofencing API calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: hopefully correctly fix compile 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
Index: Source/modules/geofencing/WorkerNavigatorGeofencing.cpp
diff --git a/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp b/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp
index 5b3928cd58aeec8a1690f1f8f5ec1b7a6c32e356..1d5394f3b7653dd9c7df95168174cd9ebf44f8c3 100644
--- a/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp
+++ b/Source/modules/geofencing/WorkerNavigatorGeofencing.cpp
@@ -41,7 +41,7 @@ Geofencing* WorkerNavigatorGeofencing::geofencing(WorkerNavigator& navigator)
Geofencing* WorkerNavigatorGeofencing::geofencing()
{
if (!m_geofencing)
- m_geofencing = Geofencing::create();
+ m_geofencing = Geofencing::create(nullptr);
return m_geofencing.get();
}
« no previous file with comments | « Source/modules/geofencing/WorkerNavigatorGeofencing.h ('k') | Source/modules/geofencing/WorkerNavigatorGeofencing.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698