25 lines
645 B
C++
25 lines
645 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef CommonV8HandlerH
|
|
#define CommonV8HandlerH
|
|
|
|
#include "CEF4DelphiVCLRTL.hpp"
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
class TV8Handler : public TCefv8HandlerOwn
|
|
{
|
|
protected:
|
|
virtual bool __fastcall Execute(const ustring name, const _di_ICefv8Value obj,
|
|
const TCefv8ValueArray arguments, _di_ICefv8Value &retval, ustring &exception);
|
|
};
|
|
|
|
class TWebKitInitializeEvent : public TCppInterfacedObject<TOnWebKitInitializedEvent>
|
|
{
|
|
public:
|
|
INTFOBJECT_IMPL_IUNKNOWN(TInterfacedObject);
|
|
void __fastcall Invoke();
|
|
};
|
|
|
|
#endif
|