From fe9d640ea90cfccac39b6475dad9df62072542fc Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Thu, 14 Dec 2017 19:45:53 +0000 Subject: Create classes for XFA JS objects This CL creates classes for the various XFA JS objects. The method calls from xfa_basic_data_element_script have been modified to call these methods instead of methods in CJX_Object. Change-Id: Idb2de38656f7e8edc559d44921eba25073e6c806 Reviewed-on: https://pdfium-review.googlesource.com/21110 Commit-Queue: dsinclair Reviewed-by: Henrique Nakashima --- xfa/fxfa/parser/cxfa_fill.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'xfa/fxfa/parser/cxfa_fill.cpp') diff --git a/xfa/fxfa/parser/cxfa_fill.cpp b/xfa/fxfa/parser/cxfa_fill.cpp index d5020033b7..a26bc896d7 100644 --- a/xfa/fxfa/parser/cxfa_fill.cpp +++ b/xfa/fxfa/parser/cxfa_fill.cpp @@ -6,6 +6,9 @@ #include "xfa/fxfa/parser/cxfa_fill.h" +#include "fxjs/xfa/cjx_fill.h" +#include "third_party/base/ptr_util.h" + namespace { const CXFA_Node::PropertyData kPropertyData[] = { @@ -38,6 +41,7 @@ CXFA_Fill::CXFA_Fill(CXFA_Document* doc, XFA_PacketType packet) XFA_Element::Fill, kPropertyData, kAttributeData, - kName) {} + kName, + pdfium::MakeUnique(this)) {} CXFA_Fill::~CXFA_Fill() {} -- cgit v1.2.3