private void on_location_update(cef_get_geolocation_callback_t *self, cef_geoposition_t *position) { CheckSelf(self); var mPosition = CefGeoposition.FromNative(position); OnLocationUpdate(mPosition); }
/// <summary> /// Called with the 'best available' location information or, if the location /// update failed, with error information. /// </summary> protected abstract void OnLocationUpdate(CefGeoposition position);