blob: 103b2757f644409219e69ea8f4ca7a8e5a0399ae (
plain)
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
|
// Copyright 2016 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef FXJS_CFXJSE_ISOLATETRACKER_H_
#define FXJS_CFXJSE_ISOLATETRACKER_H_
#include "fxjs/cfxjse_runtimedata.h"
#include "v8/include/v8.h"
class CFXJSE_ScopeUtil_IsolateHandle {
public:
explicit CFXJSE_ScopeUtil_IsolateHandle(v8::Isolate* pIsolate);
~CFXJSE_ScopeUtil_IsolateHandle();
private:
CFXJSE_ScopeUtil_IsolateHandle(const CFXJSE_ScopeUtil_IsolateHandle&) =
delete;
void operator=(const CFXJSE_ScopeUtil_IsolateHandle&) = delete;
void* operator new(size_t size) = delete;
void operator delete(void*, size_t) = delete;
v8::Isolate::Scope m_iscope;
v8::HandleScope m_hscope;
};
class CFXJSE_ScopeUtil_IsolateHandleRootContext
: public CFXJSE_ScopeUtil_IsolateHandle {
public:
explicit CFXJSE_ScopeUtil_IsolateHandleRootContext(v8::Isolate* pIsolate);
~CFXJSE_ScopeUtil_IsolateHandleRootContext();
private:
CFXJSE_ScopeUtil_IsolateHandleRootContext(
const CFXJSE_ScopeUtil_IsolateHandleRootContext&) = delete;
void operator=(const CFXJSE_ScopeUtil_IsolateHandleRootContext&) = delete;
void* operator new(size_t size) = delete;
void operator delete(void*, size_t) = delete;
v8::Context::Scope m_cscope;
};
#endif // FXJS_CFXJSE_ISOLATETRACKER_H_
|