-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathv8interceptor.cpp
More file actions
34 lines (25 loc) · 907 Bytes
/
v8interceptor.cpp
File metadata and controls
34 lines (25 loc) · 907 Bytes
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
#include "v8interceptor.h"
V8Interceptor::V8Interceptor()
{
}
void V8Interceptor::AddRef() const {
CefRefCount::AddRef();
}
bool V8Interceptor::Release() const {
return CefRefCount::Release();
}
bool V8Interceptor::HasOneRef() const {
return CefRefCount::HasOneRef();
}
bool V8Interceptor::Set(const CefString &name, const CefRefPtr<CefV8Value> object, const CefRefPtr<CefV8Value> value, CefString &exception) {
return false;
}
bool V8Interceptor::Set(int index, const CefRefPtr<CefV8Value> object, const CefRefPtr<CefV8Value> value, CefString &exception) {
return false;
}
bool V8Interceptor::Get(const CefString &name, const CefRefPtr<CefV8Value> object, CefRefPtr<CefV8Value> &retval, CefString &exception) {
return false;
}
bool V8Interceptor::Get(int index, const CefRefPtr<CefV8Value> object, CefRefPtr<CefV8Value> &retval, CefString &exception) {
return false;
}