diff options
author | Lei Zhang <thestig@chromium.org> | 2015-11-10 09:38:57 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-11-10 09:38:57 -0800 |
commit | d88a364c1c79b294b980c20ebc9356ea42635bff (patch) | |
tree | bb44b0a75a3671ba3e305e3d812dcc098144e851 /fpdfsdk/include/jsapi | |
parent | b553bcb6a8e69de61f3b4abd257ee3161aa752c6 (diff) | |
download | pdfium-d88a364c1c79b294b980c20ebc9356ea42635bff.tar.xz |
Merge to XFA: Remove CFX_PtrArray usage in fpdfsdk.
TBR=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1430213002 .
(cherry picked from commit 8deeacd23872ecc132a0a678e344a018b5114a3a)
Review URL: https://codereview.chromium.org/1416113010 .
Diffstat (limited to 'fpdfsdk/include/jsapi')
-rw-r--r-- | fpdfsdk/include/jsapi/fxjs_v8.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/fpdfsdk/include/jsapi/fxjs_v8.h b/fpdfsdk/include/jsapi/fxjs_v8.h index 00eb704d93..70518406cb 100644 --- a/fpdfsdk/include/jsapi/fxjs_v8.h +++ b/fpdfsdk/include/jsapi/fxjs_v8.h @@ -16,7 +16,11 @@ #include <v8.h> -#include "core/include/fxcrt/fx_basic.h" +#include <vector> + +#include "core/include/fxcrt/fx_string.h" + +class CFXJS_ObjDefinition; // FXJS_V8 places no restrictions on these two classes; it merely passes them // on to caller-provided methods. @@ -44,7 +48,7 @@ class FXJS_PerIsolateData { static void SetUp(v8::Isolate* pIsolate); static FXJS_PerIsolateData* Get(v8::Isolate* pIsolate); - CFX_PtrArray m_ObjectDefnArray; + std::vector<CFXJS_ObjDefinition*> m_ObjectDefnArray; CFXJSE_RuntimeData* m_pFXJSERuntimeData; protected: |