diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-09 13:24:34 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-09 13:24:34 -0700 |
commit | 8bd9ce00a0755d72c9b5b8ad43d8f50c2f51e5c5 (patch) | |
tree | 9dd3a72354f353694cc52747acabf297a10251a3 /fpdfsdk | |
parent | 3cace320e07bb954710c50fc7634ca3a8f3eda38 (diff) | |
download | pdfium-8bd9ce00a0755d72c9b5b8ad43d8f50c2f51e5c5.tar.xz |
Move xfa/fxjse/ to fxjse/
This makes it clear that fxjse/ is a standalone component and should not be
entangled with other xfa/ components.
BUG=pdfium:506
Review-Url: https://codereview.chromium.org/2056663004
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/javascript/DEPS | 2 | ||||
-rw-r--r-- | fpdfsdk/javascript/cjs_runtime.cpp | 2 | ||||
-rw-r--r-- | fpdfsdk/javascript/ijs_runtime.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/fpdfsdk/javascript/DEPS b/fpdfsdk/javascript/DEPS index 80f4b768d9..3adc40c859 100644 --- a/fpdfsdk/javascript/DEPS +++ b/fpdfsdk/javascript/DEPS @@ -1,5 +1,5 @@ include_rules = [ '+core/fdrm/crypto/include', '+core/fpdfapi/fpdf_font/include', - '+xfa/fxjse' + '+fxjse/include' ] diff --git a/fpdfsdk/javascript/cjs_runtime.cpp b/fpdfsdk/javascript/cjs_runtime.cpp index 503392fe63..fcdbfcfb4d 100644 --- a/fpdfsdk/javascript/cjs_runtime.cpp +++ b/fpdfsdk/javascript/cjs_runtime.cpp @@ -31,7 +31,7 @@ #ifdef PDF_ENABLE_XFA #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h" -#include "xfa/fxjse/value.h" +#include "fxjse/include/cfxjse_value.h" #endif // PDF_ENABLE_XFA // static diff --git a/fpdfsdk/javascript/ijs_runtime.h b/fpdfsdk/javascript/ijs_runtime.h index 19a440e6ed..4083f86e87 100644 --- a/fpdfsdk/javascript/ijs_runtime.h +++ b/fpdfsdk/javascript/ijs_runtime.h @@ -11,7 +11,7 @@ #include "core/fxcrt/include/fx_system.h" #ifdef PDF_ENABLE_XFA -#include "xfa/fxjse/include/fxjse.h" +#include "fxjse/include/fxjse.h" #endif // PDF_ENABLE_XFA class CPDFDoc_Environment; |