| OLD | NEW |
| 1 // Copyright 2015 PDFium Authors. All rights reserved. | 1 // Copyright 2015 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "fpdfsdk/include/fsdk_mgr.h" | 9 #include "fpdfsdk/include/fsdk_mgr.h" |
| 10 #include "fpdfsdk/javascript/ijs_context.h" | 10 #include "fpdfsdk/javascript/ijs_context.h" |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 #ifdef PDF_ENABLE_XFA | 141 #ifdef PDF_ENABLE_XFA |
| 142 FX_BOOL GetValueByName(const CFX_ByteStringC&, CFXJSE_Value*) override { | 142 FX_BOOL GetValueByName(const CFX_ByteStringC&, CFXJSE_Value*) override { |
| 143 return FALSE; | 143 return FALSE; |
| 144 } | 144 } |
| 145 | 145 |
| 146 FX_BOOL SetValueByName(const CFX_ByteStringC&, CFXJSE_Value*) override { | 146 FX_BOOL SetValueByName(const CFX_ByteStringC&, CFXJSE_Value*) override { |
| 147 return FALSE; | 147 return FALSE; |
| 148 } | 148 } |
| 149 #endif // PDF_ENABLE_XFA | 149 #endif // PDF_ENABLE_XFA |
| 150 | 150 |
| 151 int Execute(IJS_Context* cc, | 151 int Execute(const CFX_WideString& script, CFX_WideString* info) override { |
| 152 const wchar_t* script, | |
| 153 CFX_WideString* info) override { | |
| 154 return 0; | 152 return 0; |
| 155 } | 153 } |
| 156 | 154 |
| 157 protected: | 155 protected: |
| 158 CPDFSDK_Document* m_pDoc; | 156 CPDFSDK_Document* m_pDoc; |
| 159 std::unique_ptr<CJS_ContextStub> m_pContext; | 157 std::unique_ptr<CJS_ContextStub> m_pContext; |
| 160 }; | 158 }; |
| 161 | 159 |
| 162 // static | 160 // static |
| 163 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) {} | 161 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) {} |
| 164 | 162 |
| 165 // static | 163 // static |
| 166 IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) { | 164 IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) { |
| 167 return new CJS_RuntimeStub; | 165 return new CJS_RuntimeStub; |
| 168 } | 166 } |
| OLD | NEW |