diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-21 22:02:20 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-21 22:02:20 +0000 |
commit | 307dfb406422f9589fcdb09039b4c31a9c5f6269 (patch) | |
tree | 7d176d1f37af77877cfb2714e5ea415f344ba9db /testing | |
parent | 96d6f741b3c106ba0e48a05692910f64cf1e5e09 (diff) | |
download | pdfium-307dfb406422f9589fcdb09039b4c31a9c5f6269.tar.xz |
Cleanup CXFA_ScriptData
This CL cleans removes out params, makes methods const and moves the
XFA_ScriptDataType into CXFA_ScriptData.
Change-Id: I5a51a0eddc3608577a387472911000daa479af0f
Reviewed-on: https://pdfium-review.googlesource.com/19090
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'testing')
-rw-r--r-- | testing/xfa_js_embedder_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/xfa_js_embedder_test.cpp b/testing/xfa_js_embedder_test.cpp index 68a0c109d4..966264d735 100644 --- a/testing/xfa_js_embedder_test.cpp +++ b/testing/xfa_js_embedder_test.cpp @@ -74,7 +74,7 @@ bool XFAJSEmbedderTest::ExecuteSilenceFailure(const ByteStringView& input) { bool XFAJSEmbedderTest::ExecuteHelper(const ByteStringView& input) { value_ = pdfium::MakeUnique<CFXJSE_Value>(GetIsolate()); - return script_context_->RunScript(XFA_ScriptDataType::Formcalc, + return script_context_->RunScript(CXFA_ScriptData::Type::Formcalc, WideString::FromUTF8(input).AsStringView(), value_.get(), GetXFADocument()->GetRoot()); } |