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

Unified Diff: Source/modules/geofencing/NavigatorGeofencing.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: address comments 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/NavigatorGeofencing.cpp
diff --git a/Source/modules/geofencing/NavigatorGeofencing.cpp b/Source/modules/geofencing/NavigatorGeofencing.cpp
index 4a50edbf34bad7cac52c95bf0035aec01aafc3dd..718d59ffc0f1471b7dc178306589f24824376509 100644
--- a/Source/modules/geofencing/NavigatorGeofencing.cpp
+++ b/Source/modules/geofencing/NavigatorGeofencing.cpp
@@ -41,7 +41,7 @@ Geofencing* NavigatorGeofencing::geofencing(Navigator& navigator)
Geofencing* NavigatorGeofencing::geofencing()
{
if (!m_geofencing)
- m_geofencing = Geofencing::create();
+ m_geofencing = Geofencing::create(nullptr);
return m_geofencing.get();
}

Powered by Google App Engine
This is Rietveld 408576698