From e0518bf0a0e703b1e010081079c988f011834cb6 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 8 Feb 2018 21:44:59 +0000 Subject: Move cjs_v8.cpp to cfx_v8.cpp The layering should be CJS => CFXJS => CFX_V8 with the CJS name being higher up. Change-Id: Ic130f248906e9c4df641dd508389b0555786b999 Reviewed-on: https://pdfium-review.googlesource.com/26051 Commit-Queue: Tom Sepez Reviewed-by: dsinclair --- fxjs/xfa/cjx_template.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'fxjs/xfa/cjx_template.cpp') diff --git a/fxjs/xfa/cjx_template.cpp b/fxjs/xfa/cjx_template.cpp index d909567c51..6612a7c5c2 100644 --- a/fxjs/xfa/cjx_template.cpp +++ b/fxjs/xfa/cjx_template.cpp @@ -28,7 +28,7 @@ CJX_Template::CJX_Template(CXFA_Template* tmpl) : CJX_Model(tmpl) { CJX_Template::~CJX_Template() {} CJS_Return CJX_Template::formNodes( - CJS_V8* runtime, + CFX_V8* runtime, const std::vector>& params) { if (params.size() != 1) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); @@ -36,7 +36,7 @@ CJS_Return CJX_Template::formNodes( } CJS_Return CJX_Template::remerge( - CJS_V8* runtime, + CFX_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); @@ -46,7 +46,7 @@ CJS_Return CJX_Template::remerge( } CJS_Return CJX_Template::execInitialize( - CJS_V8* runtime, + CFX_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); @@ -54,7 +54,7 @@ CJS_Return CJX_Template::execInitialize( } CJS_Return CJX_Template::recalculate( - CJS_V8* runtime, + CFX_V8* runtime, const std::vector>& params) { if (params.size() != 1) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); @@ -62,7 +62,7 @@ CJS_Return CJX_Template::recalculate( } CJS_Return CJX_Template::execCalculate( - CJS_V8* runtime, + CFX_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); @@ -70,7 +70,7 @@ CJS_Return CJX_Template::execCalculate( } CJS_Return CJX_Template::execValidate( - CJS_V8* runtime, + CFX_V8* runtime, const std::vector>& params) { if (!params.empty()) return CJS_Return(JSGetStringFromID(JSMessage::kParamError)); -- cgit v1.2.3