namespace Cef3
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Cef3.Interop;
///
/// Callback interface used for asynchronous continuation of geolocation
/// permission requests.
///
public sealed unsafe partial class CefGeolocationCallback
{
///
/// Call to allow or deny geolocation access.
///
public void Continue(bool allow)
{
// FIXME: it is can be executed only once - so may be make it self-disposable ?
cef_geolocation_callback_t.cont(_self, allow ? 1 : 0);
}
}
}