summaryrefslogtreecommitdiff
path: root/fpdfsdk/src/javascript/JS_Runtime.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2016-03-04 12:25:33 -0800
committerTom Sepez <tsepez@chromium.org>2016-03-04 12:25:33 -0800
commit3e44a7bd2b60ace1ee8bc8f48c709056f65c3dc1 (patch)
treeda619820b9c96ebca7551fd2135a3dff8925c3e6 /fpdfsdk/src/javascript/JS_Runtime.h
parentdca24838ce9799bd878477f36014525c9d6b645d (diff)
downloadpdfium-3e44a7bd2b60ace1ee8bc8f48c709056f65c3dc1.tar.xz
Only place primitive objects on the V8 global template.
Kill some crummy comments along the way. BUG=pdfium:419 R=jochen@chromium.org Review URL: https://codereview.chromium.org/1759893002 .
Diffstat (limited to 'fpdfsdk/src/javascript/JS_Runtime.h')
-rw-r--r--fpdfsdk/src/javascript/JS_Runtime.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/fpdfsdk/src/javascript/JS_Runtime.h b/fpdfsdk/src/javascript/JS_Runtime.h
index 6fc3894f44..8215b88994 100644
--- a/fpdfsdk/src/javascript/JS_Runtime.h
+++ b/fpdfsdk/src/javascript/JS_Runtime.h
@@ -58,6 +58,9 @@ class CJS_Runtime : public IJS_Runtime {
v8::Isolate* GetIsolate() const { return m_isolate; }
v8::Local<v8::Context> NewJSContext();
+ void SetConstArray(const CFX_WideString& name, v8::Local<v8::Array> array);
+ v8::Local<v8::Array> GetConstArray(const CFX_WideString& name);
+
#ifdef PDF_ENABLE_XFA
FX_BOOL GetHValueByName(const CFX_ByteStringC& utf8Name,
FXJSE_HVALUE hValue) override;
@@ -80,6 +83,7 @@ class CJS_Runtime : public IJS_Runtime {
bool m_isolateManaged;
v8::Global<v8::Context> m_context;
std::vector<v8::Global<v8::Object>*> m_StaticObjects;
+ std::map<CFX_WideString, v8::Global<v8::Array>> m_ConstArrays;
std::set<Observer*> m_observers;
};