diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-30 21:48:20 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-30 21:48:20 +0000 |
commit | e06c542ffdc7325cb3c430e59bd0d9df4ddb7776 (patch) | |
tree | 3ca7f1e31c4b103920b6cc14e966b347cc4a8905 /xfa/fxfa/fxfa_basic.h | |
parent | c40c5aa2d7f1753dd382c35955deafdaca660020 (diff) | |
download | pdfium-e06c542ffdc7325cb3c430e59bd0d9df4ddb7776.tar.xz |
Make parsers work off XFA_PacketType enum
This CL changes the various parsers to use XFA_PacketType instead of
XFA_XDPPACKET. This just leaves XFA_XDPPACKET for determining if a given
node can be created in a given packet.
Change-Id: I6fd23480c0c780a131d23b64b7c7e9d8684b0220
Reviewed-on: https://pdfium-review.googlesource.com/20013
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fxfa/fxfa_basic.h')
-rw-r--r-- | xfa/fxfa/fxfa_basic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/fxfa_basic.h b/xfa/fxfa/fxfa_basic.h index f4d3383ae8..6094512995 100644 --- a/xfa/fxfa/fxfa_basic.h +++ b/xfa/fxfa/fxfa_basic.h @@ -100,7 +100,7 @@ enum XFA_XDPPACKET_FLAGS { struct XFA_PACKETINFO { uint32_t uHash; const wchar_t* pName; - XFA_XDPPACKET eName; + XFA_PacketType eName; const wchar_t* pURI; uint32_t eFlags; }; |