diff options
author | Lei Zhang <thestig@chromium.org> | 2018-02-07 19:57:25 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-07 19:57:25 +0000 |
commit | ec7d8e21e72562d664e9596cb73bae6da8d6703c (patch) | |
tree | 7a9f8863d2817e72fc0fab18e1522ff1834fbe24 /xfa/fxfa/parser/cxfa_ui.cpp | |
parent | c0c32b0a3af11624a1f3eaeb9d940d525b54cd4d (diff) | |
download | pdfium-ec7d8e21e72562d664e9596cb73bae6da8d6703c.tar.xz |
Make xfa_fxfa_parser target jumbo capable.
Mechanically uniquify all the kFoo variables in xfa/fxfa/parser.
BUG=pdfium:964
Change-Id: Iffe15015282d572147f31f2101fa0127f2198620
Reviewed-on: https://pdfium-review.googlesource.com/25890
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_ui.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_ui.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xfa/fxfa/parser/cxfa_ui.cpp b/xfa/fxfa/parser/cxfa_ui.cpp index e6a3963334..8729b92374 100644 --- a/xfa/fxfa/parser/cxfa_ui.cpp +++ b/xfa/fxfa/parser/cxfa_ui.cpp @@ -11,7 +11,7 @@ namespace { -const CXFA_Node::PropertyData kPropertyData[] = { +const CXFA_Node::PropertyData kUiPropertyData[] = { {XFA_Element::CheckButton, 1, XFA_PROPERTYFLAG_OneOf}, {XFA_Element::ChoiceList, 1, XFA_PROPERTYFLAG_OneOf}, {XFA_Element::DefaultUi, 1, XFA_PROPERTYFLAG_OneOf}, @@ -26,13 +26,13 @@ const CXFA_Node::PropertyData kPropertyData[] = { {XFA_Element::TextEdit, 1, XFA_PROPERTYFLAG_OneOf}, {XFA_Element::Extras, 1, 0}, {XFA_Element::Unknown, 0, 0}}; -const CXFA_Node::AttributeData kAttributeData[] = { +const CXFA_Node::AttributeData kUiAttributeData[] = { {XFA_Attribute::Id, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Use, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}}; -constexpr wchar_t kName[] = L"ui"; +constexpr wchar_t kUiName[] = L"ui"; } // namespace @@ -42,15 +42,15 @@ CXFA_Ui::CXFA_Ui(CXFA_Document* doc, XFA_PacketType packet) (XFA_XDPPACKET_Template | XFA_XDPPACKET_Form), XFA_ObjectType::Node, XFA_Element::Ui, - kPropertyData, - kAttributeData, - kName, + kUiPropertyData, + kUiAttributeData, + kUiName, pdfium::MakeUnique<CJX_Ui>(this)) {} CXFA_Ui::~CXFA_Ui() {} bool CXFA_Ui::IsAOneOfChild(CXFA_Node* child) const { - for (auto& prop : kPropertyData) { + for (auto& prop : kUiPropertyData) { if (prop.property != child->GetElementType()) continue; if (!!(prop.flags & XFA_PROPERTYFLAG_OneOf)) |