summaryrefslogtreecommitdiff
path: root/fxjs/cfxjse_context.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-02-01 19:23:03 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-02-01 19:23:03 +0000
commitfb25606e584e14d60fc243e8b56eef399a4a54bd (patch)
tree4b7feb8bc4e4bd0201b50d51ef51805bd2db21c5 /fxjs/cfxjse_context.h
parente899dd7d820ec1ab7cb27bfd23dbe0a09ec3a0c3 (diff)
downloadpdfium-fb25606e584e14d60fc243e8b56eef399a4a54bd.tar.xz
Make FXJSE_Engine constructed from FXJS_Engine.
No change in functionality yet, just passing higher level object. Precursor to maybe sharing v8 context between fxjs / fxjse. Mark unimplemented ctors / assignment operator as "delete". Change-Id: I100de7755909eec2eed96f6f51216d85923ffbb2 Reviewed-on: https://pdfium-review.googlesource.com/25050 Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/cfxjse_context.h')
-rw-r--r--fxjs/cfxjse_context.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/fxjs/cfxjse_context.h b/fxjs/cfxjse_context.h
index 48816eb629..c6949fc850 100644
--- a/fxjs/cfxjse_context.h
+++ b/fxjs/cfxjse_context.h
@@ -40,9 +40,8 @@ class CFXJSE_Context {
protected:
friend class CFXJSE_ScopeUtil_IsolateHandleContext;
- CFXJSE_Context();
- CFXJSE_Context(const CFXJSE_Context&);
- CFXJSE_Context& operator=(const CFXJSE_Context&);
+ CFXJSE_Context(const CFXJSE_Context&) = delete;
+ CFXJSE_Context& operator=(const CFXJSE_Context&) = delete;
v8::Global<v8::Context> m_hContext;
v8::Isolate* m_pIsolate;