blob: 8f5eece3be225f800a8497fcab5c7318b7da4258 [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// Copyright 2014 The PDFium Authors
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -07002// 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/cscript_logpseudomodel.h"
8
Haibo Huang49cc9302020-04-27 16:14:24 -07009#include "fxjs/xfa/cjx_logpseudomodel.h"
kumarashishg826308d2023-06-23 13:21:22 +000010#include "xfa/fxfa/parser/cxfa_document.h"
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070011
kumarashishg826308d2023-06-23 13:21:22 +000012CScript_LogPseudoModel::CScript_LogPseudoModel(CXFA_Document* doc)
13 : CXFA_Object(doc,
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070014 XFA_ObjectType::Object,
15 XFA_Element::LogPseudoModel,
kumarashishg826308d2023-06-23 13:21:22 +000016 cppgc::MakeGarbageCollected<CJX_LogPseudoModel>(
17 doc->GetHeap()->GetAllocationHandle(),
18 this)) {}
Philip P. Moltmann4d3acf42017-03-20 11:05:52 -070019
kumarashishg826308d2023-06-23 13:21:22 +000020CScript_LogPseudoModel::~CScript_LogPseudoModel() = default;