diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-27 18:10:47 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-27 18:10:47 +0000 |
commit | f473672fd6305fe97c749bde3b92e3c9c90e88d0 (patch) | |
tree | fe1ec0af4f66a801c7a08fd762e61b065b89d4ec /xfa/fxfa/fxfa_basic.h | |
parent | 3636a854af15219fd679ed54207abcdad3283b9b (diff) | |
download | pdfium-f473672fd6305fe97c749bde3b92e3c9c90e88d0.tar.xz |
Generate XFA node classes
This CL adds concrete classes for each of the XFA Node types.
Change-Id: Ieac8e2fcd5d13c61daa27fc63e3d80abb7aa7a29
Reviewed-on: https://pdfium-review.googlesource.com/18271
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/fxfa_basic.h')
-rw-r--r-- | xfa/fxfa/fxfa_basic.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/xfa/fxfa/fxfa_basic.h b/xfa/fxfa/fxfa_basic.h index 5f1369906c..e2d4056095 100644 --- a/xfa/fxfa/fxfa_basic.h +++ b/xfa/fxfa/fxfa_basic.h @@ -939,14 +939,6 @@ enum class XFA_Element : int32_t { Items }; -struct XFA_ELEMENTINFO { - uint32_t uHash; - const wchar_t* pName; - XFA_Element eName; - uint32_t dwPackets; - XFA_ObjectType eObjectType; -}; - enum class XFA_AttributeType : uint8_t { NotSure, Enum, @@ -965,11 +957,6 @@ struct XFA_ATTRIBUTEINFO { void* pDefValue; }; -struct XFA_ELEMENTHIERARCHY { - uint16_t wStart; - uint16_t wCount; -}; - struct XFA_SCRIPTHIERARCHY { uint16_t wMethodStart; uint16_t wMethodCount; @@ -980,11 +967,6 @@ struct XFA_SCRIPTHIERARCHY { #define XFA_PROPERTYFLAG_OneOf 0x01 #define XFA_PROPERTYFLAG_DefaultOneOf 0x02 -struct XFA_PROPERTY { - XFA_Element eName; - uint8_t uOccur; - uint8_t uFlags; -}; struct XFA_ATTRIBUTEENUMINFO { uint32_t uHash; |