1 // Copyright 2018 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 "fxjs/xfa/fxjse.h" 8 9 namespace pdfium { 10 namespace fxjse { 11 12 const char kFuncTag[] = "function descriptor tag"; 13 const char kClassTag[] = "class descriptor tag"; 14 15 } // namespace fxjse 16 } // namespace pdfium 17 18 CFXJSE_HostObject::CFXJSE_HostObject() = default; 19 20 CFXJSE_HostObject::~CFXJSE_HostObject() = default; 21 AsFormCalcContext()22CFXJSE_FormCalcContext* CFXJSE_HostObject::AsFormCalcContext() { 23 return nullptr; 24 } 25 AsCXFAObject()26CXFA_Object* CFXJSE_HostObject::AsCXFAObject() { 27 return nullptr; 28 } 29