| Index: fxjs/fxjs_v8.cpp
|
| diff --git a/fpdfsdk/jsapi/fxjs_v8.cpp b/fxjs/fxjs_v8.cpp
|
| similarity index 99%
|
| rename from fpdfsdk/jsapi/fxjs_v8.cpp
|
| rename to fxjs/fxjs_v8.cpp
|
| index ddeb28f23713b30549b0f0d60c88bc097f571b59..c98de070ab1cc1d0c8d975b355ec04aedc159643 100644
|
| --- a/fpdfsdk/jsapi/fxjs_v8.cpp
|
| +++ b/fxjs/fxjs_v8.cpp
|
| @@ -4,7 +4,7 @@
|
|
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
| -#include "fpdfsdk/jsapi/include/fxjs_v8.h"
|
| +#include "fxjs/include/fxjs_v8.h"
|
|
|
| #include <vector>
|
|
|
| @@ -514,8 +514,8 @@ v8::Local<v8::Object> FXJS_NewFxDynamicObj(v8::Isolate* pIsolate,
|
| pObjDef->m_pConstructor(pIRuntime, obj);
|
|
|
| if (!bStatic && FXJS_PerIsolateData::Get(pIsolate)->m_pDynamicObjsMap) {
|
| - FXJS_PerIsolateData::Get(pIsolate)
|
| - ->m_pDynamicObjsMap->set(pPerObjData, obj);
|
| + FXJS_PerIsolateData::Get(pIsolate)->m_pDynamicObjsMap->set(pPerObjData,
|
| + obj);
|
| }
|
| return obj;
|
| }
|
|
|