namespace Xilium.CefGlue
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Xilium.CefGlue.Interop;
///
/// Generic callback interface used for asynchronous completion.
///
public abstract unsafe partial class CefCompletionCallback
{
private void on_complete(cef_completion_callback_t* self)
{
CheckSelf(self);
OnComplete();
}
///
/// Method that will be called once the task is complete.
///
protected abstract void OnComplete();
}
}