Index: fpdfsdk/src/fpdfview.cpp |
diff --git a/fpdfsdk/src/fpdfview.cpp b/fpdfsdk/src/fpdfview.cpp |
index cf05d79f5cbe7c9b17863cbe1652a55b7084a22a..a5daa8f52e43b199e19713e1a5e4806c2e219b9e 100644 |
--- a/fpdfsdk/src/fpdfview.cpp |
+++ b/fpdfsdk/src/fpdfview.cpp |
@@ -20,7 +20,7 @@ |
#include "../include/fpdfxfa/fpdfxfa_app.h" |
#include "../include/fpdfxfa/fpdfxfa_page.h" |
#include "../include/fpdfxfa/fpdfxfa_util.h" |
-#include "../include/jsapi/fxjs_v8.h" |
+#include "../include/javascript/IJavaScript.h" |
CFPDF_FileStream::CFPDF_FileStream(FPDF_FILEHANDLER* pFS) { |
m_pFS = pFS; |
@@ -196,10 +196,8 @@ FPDF_InitLibraryWithConfig(const FPDF_LIBRARY_CONFIG* cfg) { |
CPDF_ModuleMgr::Get()->InitPageModule(); |
CPDF_ModuleMgr::Get()->InitRenderModule(); |
CPDFXFA_App::GetInstance()->Initialize(); |
- if (cfg && cfg->version >= 2) { |
- FXJS_Initialize(cfg->m_v8EmbedderSlot, |
- reinterpret_cast<v8::Isolate*>(cfg->m_pIsolate)); |
- } |
+ if (cfg && cfg->version >= 2) |
+ IJS_Runtime::Initialize(cfg->m_v8EmbedderSlot, cfg->m_pIsolate); |
} |
DLLEXPORT void STDCALL FPDF_DestroyLibrary() { |