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> |
| 8 |
7 #include "fpdfsdk/include/fsdk_mgr.h" // For CPDFDoc_Environment. | 9 #include "fpdfsdk/include/fsdk_mgr.h" // For CPDFDoc_Environment. |
8 #include "fpdfsdk/include/javascript/IJavaScript.h" | 10 #include "fpdfsdk/include/javascript/IJavaScript.h" |
9 #include "third_party/base/nonstd_unique_ptr.h" | |
10 | 11 |
11 class CJS_ContextStub final : public IJS_Context { | 12 class CJS_ContextStub final : public IJS_Context { |
12 public: | 13 public: |
13 CJS_ContextStub() {} | 14 CJS_ContextStub() {} |
14 ~CJS_ContextStub() override {} | 15 ~CJS_ContextStub() override {} |
15 | 16 |
16 // IJS_Context: | 17 // IJS_Context: |
17 FX_BOOL RunScript(const CFX_WideString& script, | 18 FX_BOOL RunScript(const CFX_WideString& script, |
18 CFX_WideString* info) override { | 19 CFX_WideString* info) override { |
19 return FALSE; | 20 return FALSE; |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 #endif // PDF_ENABLE_XFA | 150 #endif // PDF_ENABLE_XFA |
150 | 151 |
151 int Execute(IJS_Context* cc, | 152 int Execute(IJS_Context* cc, |
152 const wchar_t* script, | 153 const wchar_t* script, |
153 CFX_WideString* info) override { | 154 CFX_WideString* info) override { |
154 return 0; | 155 return 0; |
155 } | 156 } |
156 | 157 |
157 protected: | 158 protected: |
158 CPDFSDK_Document* m_pDoc; | 159 CPDFSDK_Document* m_pDoc; |
159 nonstd::unique_ptr<CJS_ContextStub> m_pContext; | 160 std::unique_ptr<CJS_ContextStub> m_pContext; |
160 }; | 161 }; |
161 | 162 |
162 // static | 163 // static |
163 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) { | 164 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) { |
164 } | 165 } |
165 | 166 |
166 // static | 167 // static |
167 IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) { | 168 IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) { |
168 return new CJS_RuntimeStub; | 169 return new CJS_RuntimeStub; |
169 } | 170 } |
OLD | NEW |