forked from mobileFX/WebKitX
-
Notifications
You must be signed in to change notification settings - Fork 1
/
WebKitV8Extension.h
30 lines (22 loc) · 1.41 KB
/
WebKitV8Extension.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma once
#include "include/cef_client.h"
class CWebKitXCtrl;
/////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////
// ClientV8ExtensionHandler Class (Implementation of the V8 extension handler class)
/////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////
class WebKitV8Extension : public CefV8Handler
{
public:
CWebKitXCtrl* control;
WebKitV8Extension(CWebKitXCtrl* control);
virtual ~WebKitV8Extension();
/////////////////////////////////////////////////////////////////////////////////////////////////////
static void RegisterExtension(CWebKitXCtrl* control);
/////////////////////////////////////////////////////////////////////////////////////////////////////
virtual bool Execute(const CefString& name, CefRefPtr<CefV8Value> object, const CefV8ValueList& arguments, CefRefPtr<CefV8Value>& retval, CefString& exception) OVERRIDE;
bool __selectedNode(CefRefPtr<CefV8Value> object, const CefV8ValueList& arguments, CefRefPtr<CefV8Value>& retval, CefString& exception);
/////////////////////////////////////////////////////////////////////////////////////////////////////
IMPLEMENT_REFCOUNTING(WebKitV8Extension);
};