aboutsummaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_form.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_form.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_form.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_form.cpp b/xfa/fxfa/parser/cxfa_form.cpp
index 4586a290f..18a3ca109 100644
--- a/xfa/fxfa/parser/cxfa_form.cpp
+++ b/xfa/fxfa/parser/cxfa_form.cpp
@@ -1,4 +1,4 @@
-// Copyright 2017 PDFium Authors. All rights reserved.
+// Copyright 2017 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -7,7 +7,7 @@
#include "xfa/fxfa/parser/cxfa_form.h"
#include "fxjs/xfa/cjx_form.h"
-#include "third_party/base/ptr_util.h"
+#include "xfa/fxfa/parser/cxfa_document.h"
namespace {
@@ -20,11 +20,13 @@ const CXFA_Node::AttributeData kFormAttributeData[] = {
CXFA_Form::CXFA_Form(CXFA_Document* doc, XFA_PacketType packet)
: CXFA_Node(doc,
packet,
- XFA_XDPPACKET_Form,
+ XFA_XDPPACKET::kForm,
XFA_ObjectType::ModelNode,
XFA_Element::Form,
{},
kFormAttributeData,
- pdfium::MakeUnique<CJX_Form>(this)) {}
+ cppgc::MakeGarbageCollected<CJX_Form>(
+ doc->GetHeap()->GetAllocationHandle(),
+ this)) {}
CXFA_Form::~CXFA_Form() = default;