mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-31 18:52:40 +03:00
💄
This commit is contained in:
parent
5294cb6df1
commit
a5f72c8a2d
@ -5,24 +5,22 @@
|
||||
namespace v8_extensions {
|
||||
|
||||
class Native : public CefV8Handler {
|
||||
public:
|
||||
public:
|
||||
static void CreateContextBinding(CefRefPtr<CefV8Context> context);
|
||||
virtual bool Execute(const CefString& name,
|
||||
CefRefPtr<CefV8Value> object,
|
||||
const CefV8ValueList& arguments,
|
||||
CefRefPtr<CefV8Value>& retval,
|
||||
CefString& exception) OVERRIDE;
|
||||
|
||||
static void CreateContextBinding(CefRefPtr<CefV8Context> context);
|
||||
virtual bool Execute(const CefString& name,
|
||||
CefRefPtr<CefV8Value> object,
|
||||
const CefV8ValueList& arguments,
|
||||
CefRefPtr<CefV8Value>& retval,
|
||||
CefString& exception) OVERRIDE;
|
||||
|
||||
// Provide the reference counting implementation for this class.
|
||||
IMPLEMENT_REFCOUNTING(Native);
|
||||
|
||||
private:
|
||||
Native();
|
||||
Native(Native const&);
|
||||
static CefRefPtr<CefV8Handler> GetInstance();
|
||||
void operator=(Native const&);
|
||||
std::string windowState;
|
||||
};
|
||||
// Provide the reference counting implementation for this class.
|
||||
IMPLEMENT_REFCOUNTING(Native);
|
||||
|
||||
private:
|
||||
static CefRefPtr<CefV8Handler> GetInstance();
|
||||
Native();
|
||||
Native(Native const&);
|
||||
void operator=(Native const&);
|
||||
std::string windowState;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user