Index: fpdfsdk/include/javascript/JS_Runtime.h |
diff --git a/fpdfsdk/include/javascript/JS_Runtime.h b/fpdfsdk/include/javascript/JS_Runtime.h |
index d5124842308f92614448cc849c2488a82ec2ca4e..683021b003ec979793af10c12fa02c9b05585ff5 100644 |
--- a/fpdfsdk/include/javascript/JS_Runtime.h |
+++ b/fpdfsdk/include/javascript/JS_Runtime.h |
@@ -40,7 +40,7 @@ class CJS_Runtime : public IFXJS_Runtime { |
void SetReaderDocument(CPDFSDK_Document* pReaderDoc) override; |
CPDFSDK_Document* GetReaderDocument() override { return m_pDocument; } |
- CPDFDoc_Environment* GetReaderApp() { return m_pApp; } |
+ CPDFDoc_Environment* GetReaderApp() const { return m_pApp; } |
FX_BOOL InitJSObjects(); |
@@ -52,12 +52,9 @@ class CJS_Runtime : public IFXJS_Runtime { |
void BeginBlock() { m_bBlocking = TRUE; } |
void EndBlock() { m_bBlocking = FALSE; } |
- FX_BOOL IsBlocking() { return m_bBlocking; } |
- |
- operator IJS_Runtime*() { return (IJS_Runtime*)m_isolate; } |
- v8::Isolate* GetIsolate() { return m_isolate; } |
- void SetIsolate(v8::Isolate* isolate) { m_isolate = isolate; } |
+ FX_BOOL IsBlocking() const { return m_bBlocking; } |
+ v8::Isolate* GetIsolate() const { return m_isolate; } |
v8::Local<v8::Context> NewJSContext(); |
virtual FX_BOOL GetHValueByName(const CFX_ByteStringC& utf8Name, |
@@ -71,7 +68,6 @@ class CJS_Runtime : public IFXJS_Runtime { |
CPDFSDK_Document* m_pDocument; |
FX_BOOL m_bBlocking; |
CJS_FieldEvent* m_pFieldEventPath; |
- |
v8::Isolate* m_isolate; |
bool m_isolateManaged; |
nonstd::unique_ptr<CJS_ArrayBufferAllocator> m_pArrayBufferAllocator; |