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_permissions.h"
      8 
      9 namespace {
     10 
     11 const CXFA_Node::PropertyData kPropertyData[] = {
     12     {XFA_Element::ModifyAnnots, 1, 0},
     13     {XFA_Element::ContentCopy, 1, 0},
     14     {XFA_Element::FormFieldFilling, 1, 0},
     15     {XFA_Element::Change, 1, 0},
     16     {XFA_Element::AccessibleContent, 1, 0},
     17     {XFA_Element::Print, 1, 0},
     18     {XFA_Element::PlaintextMetadata, 1, 0},
     19     {XFA_Element::PrintHighQuality, 1, 0},
     20     {XFA_Element::DocumentAssembly, 1, 0},
     21     {XFA_Element::Unknown, 0, 0}};
     22 const CXFA_Node::AttributeData kAttributeData[] = {
     23     {XFA_Attribute::Desc, XFA_AttributeType::CData, nullptr},
     24     {XFA_Attribute::Lock, XFA_AttributeType::Integer, (void*)0},
     25     {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
     26 
     27 constexpr wchar_t kName[] = L"permissions";
     28 
     29 }  // namespace
     30 
     31 CXFA_Permissions::CXFA_Permissions(CXFA_Document* doc, XFA_PacketType packet)
     32     : CXFA_Node(doc,
     33                 packet,
     34                 XFA_XDPPACKET_Config,
     35                 XFA_ObjectType::Node,
     36                 XFA_Element::Permissions,
     37                 kPropertyData,
     38                 kAttributeData,
     39                 kName) {}
     40 
     41 CXFA_Permissions::~CXFA_Permissions() {}
     42