diff options
author | dan sinclair <dsinclair@chromium.org> | 2017-12-04 15:14:05 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-12-04 15:14:05 +0000 |
commit | 85caeb903c239d0c80aec86241885eabc1de71fb (patch) | |
tree | 43f1175aab8c758a722641005725ba41deba05c0 /fxjs/cfxjse_engine.cpp | |
parent | 703b6f08a23a1e1d87c41266f92827ae28bf994d (diff) | |
download | pdfium-85caeb903c239d0c80aec86241885eabc1de71fb.tar.xz |
Remove unused XFA code
Change-Id: Iea75ce6b3a7e06b7977491a89e7a31755f038312
Reviewed-on: https://pdfium-review.googlesource.com/20191
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'fxjs/cfxjse_engine.cpp')
-rw-r--r-- | fxjs/cfxjse_engine.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/fxjs/cfxjse_engine.cpp b/fxjs/cfxjse_engine.cpp index cd0a3f3c93..3ba6a3699f 100644 --- a/fxjs/cfxjse_engine.cpp +++ b/fxjs/cfxjse_engine.cpp @@ -34,43 +34,31 @@ namespace { const FXJSE_CLASS_DESCRIPTOR GlobalClassDescriptor = { "Root", // name - nullptr, // constructor - nullptr, // properties nullptr, // methods - 0, // property count 0, // method count CFXJSE_Engine::GlobalPropTypeGetter, CFXJSE_Engine::GlobalPropertyGetter, CFXJSE_Engine::GlobalPropertySetter, - nullptr, // property deleter CFXJSE_Engine::NormalMethodCall, }; const FXJSE_CLASS_DESCRIPTOR NormalClassDescriptor = { "XFAObject", // name - nullptr, // constructor - nullptr, // properties nullptr, // methods - 0, // property count 0, // method count CFXJSE_Engine::NormalPropTypeGetter, CFXJSE_Engine::NormalPropertyGetter, CFXJSE_Engine::NormalPropertySetter, - nullptr, // property deleter CFXJSE_Engine::NormalMethodCall, }; const FXJSE_CLASS_DESCRIPTOR VariablesClassDescriptor = { "XFAScriptObject", // name - nullptr, // constructor - nullptr, // properties nullptr, // methods - 0, // property count 0, // method count CFXJSE_Engine::NormalPropTypeGetter, CFXJSE_Engine::GlobalPropertyGetter, CFXJSE_Engine::GlobalPropertySetter, - nullptr, // property deleter CFXJSE_Engine::NormalMethodCall, }; |