1 // Copyright 2017 The PDFium Authors 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 "fxjs/xfa/cjx_encrypt.h" 8 9 #include "xfa/fxfa/parser/cxfa_encrypt.h" 10 CJX_Encrypt(CXFA_Encrypt * node)11CJX_Encrypt::CJX_Encrypt(CXFA_Encrypt* node) : CJX_Node(node) {} 12 13 CJX_Encrypt::~CJX_Encrypt() = default; 14 DynamicTypeIs(TypeTag eType) const15bool CJX_Encrypt::DynamicTypeIs(TypeTag eType) const { 16 return eType == static_type__ || ParentType__::DynamicTypeIs(eType); 17 } 18 format(v8::Isolate * pIsolate,v8::Local<v8::Value> * pValue,bool bSetting,XFA_Attribute eAttribute)19void CJX_Encrypt::format(v8::Isolate* pIsolate, 20 v8::Local<v8::Value>* pValue, 21 bool bSetting, 22 XFA_Attribute eAttribute) {} 23