Home | History | Annotate | Download | only in parser
      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_xsdconnection.h"
      8 
      9 #include "fxjs/xfa/cjx_xsdconnection.h"
     10 #include "third_party/base/ptr_util.h"
     11 
     12 namespace {
     13 
     14 const CXFA_Node::PropertyData kPropertyData[] = {
     15     {XFA_Element::Uri, 1, 0},
     16     {XFA_Element::RootElement, 1, 0},
     17     {XFA_Element::Unknown, 0, 0}};
     18 const CXFA_Node::AttributeData kAttributeData[] = {
     19     {XFA_Attribute::Name, XFA_AttributeType::CData, nullptr},
     20     {XFA_Attribute::DataDescription, XFA_AttributeType::CData, nullptr},
     21     {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
     22 
     23 constexpr wchar_t kName[] = L"xsdConnection";
     24 
     25 }  // namespace
     26 
     27 CXFA_XsdConnection::CXFA_XsdConnection(CXFA_Document* doc,
     28                                        XFA_PacketType packet)
     29     : CXFA_Node(doc,
     30                 packet,
     31                 XFA_XDPPACKET_ConnectionSet,
     32                 XFA_ObjectType::Node,
     33                 XFA_Element::XsdConnection,
     34                 kPropertyData,
     35                 kAttributeData,
     36                 kName,
     37                 pdfium::MakeUnique<CJX_XsdConnection>(this)) {}
     38 
     39 CXFA_XsdConnection::~CXFA_XsdConnection() {}
     40