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_break.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'xfa/fxfa/parser/cxfa_break.cpp') diff --git a/xfa/fxfa/parser/cxfa_break.cpp b/xfa/fxfa/parser/cxfa_break.cpp index fcce81c89c..3a83b1c62a 100644 --- a/xfa/fxfa/parser/cxfa_break.cpp +++ b/xfa/fxfa/parser/cxfa_break.cpp @@ -6,6 +6,9 @@ #include "xfa/fxfa/parser/cxfa_break.h" +#include "fxjs/xfa/cjx_break.h" +#include "third_party/base/ptr_util.h" + namespace { const CXFA_Node::PropertyData kPropertyData[] = {{XFA_Element::Extras, 1, 0}, @@ -40,6 +43,7 @@ CXFA_Break::CXFA_Break(CXFA_Document* doc, XFA_PacketType packet) XFA_Element::Break, kPropertyData, kAttributeData, - kName) {} + kName, + pdfium::MakeUnique(this)) {} CXFA_Break::~CXFA_Break() {} -- cgit v1.2.3