diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-30 18:28:12 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-30 18:28:12 +0000 |
commit | d2d4df84d3c2f0466d9ad60ee52fa7cc3915ebe4 (patch) | |
tree | 9164f5a8e963513aaeab9618ac4bf96b661b2ac0 /fpdfsdk | |
parent | 4ab6b380624b3eaad7b17874e92e10e3feaa5cd9 (diff) | |
download | pdfium-d2d4df84d3c2f0466d9ad60ee52fa7cc3915ebe4.tar.xz |
Rename report to cjs_report
This Cl renames report.{cpp|h} to cjs_report.{cpp|h} to match the
contents.
Change-Id: Ifb8846bff5423417f7543e47a45a7e50e18c72c6
Reviewed-on: https://pdfium-review.googlesource.com/17044
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/javascript/cjs_report.cpp (renamed from fpdfsdk/javascript/report.cpp) | 2 | ||||
-rw-r--r-- | fpdfsdk/javascript/cjs_report.h (renamed from fpdfsdk/javascript/report.h) | 6 | ||||
-rw-r--r-- | fpdfsdk/javascript/cjs_runtime.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/fpdfsdk/javascript/report.cpp b/fpdfsdk/javascript/cjs_report.cpp index 88ea57569a..6d78100e3b 100644 --- a/fpdfsdk/javascript/report.cpp +++ b/fpdfsdk/javascript/cjs_report.cpp @@ -4,7 +4,7 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#include "fpdfsdk/javascript/report.h" +#include "fpdfsdk/javascript/cjs_report.h" #include <vector> diff --git a/fpdfsdk/javascript/report.h b/fpdfsdk/javascript/cjs_report.h index 7765ae5a9e..fa6c574612 100644 --- a/fpdfsdk/javascript/report.h +++ b/fpdfsdk/javascript/cjs_report.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef FPDFSDK_JAVASCRIPT_REPORT_H_ -#define FPDFSDK_JAVASCRIPT_REPORT_H_ +#ifndef FPDFSDK_JAVASCRIPT_CJS_REPORT_H_ +#define FPDFSDK_JAVASCRIPT_CJS_REPORT_H_ #include <vector> @@ -38,4 +38,4 @@ class CJS_Report : public CJS_Object { static const JSMethodSpec MethodSpecs[]; }; -#endif // FPDFSDK_JAVASCRIPT_REPORT_H_ +#endif // FPDFSDK_JAVASCRIPT_CJS_REPORT_H_ diff --git a/fpdfsdk/javascript/cjs_runtime.cpp b/fpdfsdk/javascript/cjs_runtime.cpp index 2c71b013dd..ae66e99ca4 100644 --- a/fpdfsdk/javascript/cjs_runtime.cpp +++ b/fpdfsdk/javascript/cjs_runtime.cpp @@ -32,12 +32,12 @@ #include "fpdfsdk/javascript/cjs_position.h" #include "fpdfsdk/javascript/cjs_printparamsobj.h" #include "fpdfsdk/javascript/cjs_publicmethods.h" +#include "fpdfsdk/javascript/cjs_report.h" #include "fpdfsdk/javascript/cjs_scalehow.h" #include "fpdfsdk/javascript/cjs_scalewhen.h" #include "fpdfsdk/javascript/cjs_style.h" #include "fpdfsdk/javascript/cjs_timerobj.h" #include "fpdfsdk/javascript/cjs_zoomtype.h" -#include "fpdfsdk/javascript/report.h" #include "fpdfsdk/javascript/util.h" #include "public/fpdf_formfill.h" #include "third_party/base/stl_util.h" |