From 3745841a4c4ab915c98865c1dd71f9debc3e2f99 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 6 Oct 2015 11:33:46 -0700 Subject: Merge to XFA: Make the vast majority of JS headers private to src/javascript. (cherry picked from commit 5b3d0208723f21c50b9922bdc500c9d78c359a25) Original Review URL: https://codereview.chromium.org/1389783002 . New changes to fix IWYU in: fpdfsdk/include/fpdfxfa/fpdfxfa_app.h xfa/include/fxfa/fxfa.h xfa/include/fxfa/fxfa_objectacc.h R=thestig@chromium.org Review URL: https://codereview.chromium.org/1388023003 . --- fpdfsdk/src/fsdk_mgr.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'fpdfsdk/src/fsdk_mgr.cpp') diff --git a/fpdfsdk/src/fsdk_mgr.cpp b/fpdfsdk/src/fsdk_mgr.cpp index 346dacce59..c6395bfc83 100644 --- a/fpdfsdk/src/fsdk_mgr.cpp +++ b/fpdfsdk/src/fsdk_mgr.cpp @@ -5,15 +5,14 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #include "../../public/fpdf_ext.h" -#include "../include/fsdk_define.h" +#include "../include/formfiller/FFL_FormFiller.h" +#include "../include/fpdfxfa/fpdfxfa_app.h" #include "../include/fpdfxfa/fpdfxfa_doc.h" #include "../include/fpdfxfa/fpdfxfa_page.h" #include "../include/fpdfxfa/fpdfxfa_util.h" +#include "../include/fsdk_define.h" #include "../include/fsdk_mgr.h" -#include "../include/formfiller/FFL_FormFiller.h" #include "../include/javascript/IJavaScript.h" -#include "../include/fpdfxfa/fpdfxfa_app.h" -#include "../include/javascript/JS_Runtime.h" #if _FX_OS_ == _FX_ANDROID_ #include "time.h" @@ -381,7 +380,7 @@ IFXJS_Runtime* CPDFDoc_Environment::GetJSRuntime() { if (!IsJSInitiated()) return NULL; if (!m_pJSRuntime) - m_pJSRuntime.reset(new CJS_Runtime(this)); + m_pJSRuntime.reset(IFXJS_Runtime::Create(this)); return m_pJSRuntime.get(); } -- cgit v1.2.3