1 // Copyright 2017 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #include "xfa/fxfa/parser/cxfa_form.h"
8 
9 #include "fxjs/xfa/cjx_form.h"
10 #include "third_party/base/ptr_util.h"
11 
12 namespace {
13 
14 const CXFA_Node::AttributeData kAttributeData[] = {
15     {XFA_Attribute::Checksum, XFA_AttributeType::CData, (void*)nullptr},
16     {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
17 
18 constexpr wchar_t kName[] = L"form";
19 
20 }  // namespace
21 
22 CXFA_Form::CXFA_Form(CXFA_Document* doc, XFA_PacketType packet)
23     : CXFA_Node(doc,
24                 packet,
25                 XFA_XDPPACKET_Form,
26                 XFA_ObjectType::ModelNode,
27                 XFA_Element::Form,
28                 nullptr,
29                 kAttributeData,
30                 kName,
31                 pdfium::MakeUnique<CJX_Form>(this)) {}
32 
33 CXFA_Form::~CXFA_Form() {}
34