-
Notifications
You must be signed in to change notification settings - Fork 39
/
WebKitV8Extension.cpp
57 lines (46 loc) · 1.82 KB
/
WebKitV8Extension.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "StdAfx.h"
#include "WebKitV8Extension.h"
#include "WebKitXCtrl.h"
/////////////////////////////////////////////////////////////////////////////////////////////////////
void WebKitV8Extension::RegisterExtension(CWebKitXCtrl* control)
{
// Register a V8 extension that calls native
// methods implemented in WebKitV8Extension.
std::string sink = "var cef;"
"if(!cef) cef = {};"
"(function() {"
" cef.__defineSetter__('selectedNode', function(uid) {"
" native function __selectedNode();"
" __selectedNode(uid);"
" });"
"})();";
control->v8handler = new WebKitV8Extension(control);
CefRegisterExtension("v8/WebKitX", sink, control->v8handler);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////
WebKitV8Extension::WebKitV8Extension(CWebKitXCtrl* control)
{
this->control = control;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////
WebKitV8Extension::~WebKitV8Extension(void)
{
control = NULL;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////
bool WebKitV8Extension::Execute(const CefString& name, CefRefPtr<CefV8Value> object, const CefV8ValueList& arguments, CefRefPtr<CefV8Value>& retval, CefString& exception)
{
std::string fname(name);
debugPrint("V8 Native Function Call: %s\n", fname.c_str());
if(fname == "__selectedNode")
{
return __selectedNode(object, arguments, retval, exception);
}
return false;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////
bool WebKitV8Extension::__selectedNode(CefRefPtr<CefV8Value> object, const CefV8ValueList& arguments, CefRefPtr<CefV8Value>& retval, CefString& exception)
{
std::string uid(arguments[0]->GetStringValue());
return true;
}