summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-08-28 22:37:20 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-28 22:37:20 +0000
commit48cd65d67eead592bce6c67084047ad6a7071267 (patch)
treece99b96dc49923836b1954b7fc08a68f9f7fc592
parent126927eaec336153e3be43086deee672829395f1 (diff)
downloadpdfium-48cd65d67eead592bce6c67084047ad6a7071267.tar.xz
Rename remaining fx_codec*.cpp to match class and .h file name
Then include headers in the proper order per standards, since it will no longer trigger a presubmit warning. Change-Id: I6bb86ac90e8fd9aed30b66dac61726f0dea8222c Reviewed-on: https://pdfium-review.googlesource.com/41535 Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org>
-rw-r--r--BUILD.gn10
-rw-r--r--core/fxcodec/codec/ccodec_faxmodule.cpp (renamed from core/fxcodec/codec/fx_codec_fax.cpp)3
-rw-r--r--core/fxcodec/codec/ccodec_flatemodule.cpp (renamed from core/fxcodec/codec/fx_codec_flate.cpp)4
-rw-r--r--core/fxcodec/codec/ccodec_iccmodule.cpp (renamed from core/fxcodec/codec/fx_codec_icc.cpp)3
-rw-r--r--core/fxcodec/codec/ccodec_jbig2module.cpp (renamed from core/fxcodec/codec/fx_codec_jbig.cpp)0
-rw-r--r--core/fxcodec/codec/ccodec_jpxmodule.cpp (renamed from core/fxcodec/codec/fx_codec_jpx_opj.cpp)3
6 files changed, 13 insertions, 10 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 8386f034d4..e3ba58cf02 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -723,23 +723,23 @@ jumbo_static_library("fxcodec") {
sources = [
"core/fxcodec/JBig2_DocumentContext.h",
"core/fxcodec/codec/ccodec_basicmodule.h",
+ "core/fxcodec/codec/ccodec_faxmodule.cpp",
"core/fxcodec/codec/ccodec_faxmodule.h",
+ "core/fxcodec/codec/ccodec_flatemodule.cpp",
"core/fxcodec/codec/ccodec_flatemodule.h",
+ "core/fxcodec/codec/ccodec_iccmodule.cpp",
"core/fxcodec/codec/ccodec_iccmodule.h",
+ "core/fxcodec/codec/ccodec_jbig2module.cpp",
"core/fxcodec/codec/ccodec_jbig2module.h",
"core/fxcodec/codec/ccodec_jpegmodule.cpp",
"core/fxcodec/codec/ccodec_jpegmodule.h",
+ "core/fxcodec/codec/ccodec_jpxmodule.cpp",
"core/fxcodec/codec/ccodec_jpxmodule.h",
"core/fxcodec/codec/ccodec_scanlinedecoder.cpp",
"core/fxcodec/codec/ccodec_scanlinedecoder.h",
"core/fxcodec/codec/cjpx_decoder.h",
"core/fxcodec/codec/codec_int.h",
"core/fxcodec/codec/fx_codec.cpp",
- "core/fxcodec/codec/fx_codec_fax.cpp",
- "core/fxcodec/codec/fx_codec_flate.cpp",
- "core/fxcodec/codec/fx_codec_icc.cpp",
- "core/fxcodec/codec/fx_codec_jbig.cpp",
- "core/fxcodec/codec/fx_codec_jpx_opj.cpp",
"core/fxcodec/fx_codec.h",
"core/fxcodec/fx_codec_def.h",
"core/fxcodec/jbig2/JBig2_ArithDecoder.cpp",
diff --git a/core/fxcodec/codec/fx_codec_fax.cpp b/core/fxcodec/codec/ccodec_faxmodule.cpp
index c6e71b6b60..af218f7e01 100644
--- a/core/fxcodec/codec/fx_codec_fax.cpp
+++ b/core/fxcodec/codec/ccodec_faxmodule.cpp
@@ -4,11 +4,12 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
+#include "core/fxcodec/codec/ccodec_faxmodule.h"
+
#include <algorithm>
#include <memory>
#include <vector>
-#include "core/fxcodec/codec/ccodec_faxmodule.h"
#include "core/fxcodec/codec/ccodec_scanlinedecoder.h"
#include "core/fxcodec/codec/codec_int.h"
#include "core/fxcrt/cfx_binarybuf.h"
diff --git a/core/fxcodec/codec/fx_codec_flate.cpp b/core/fxcodec/codec/ccodec_flatemodule.cpp
index 11bdf67c42..9074038c96 100644
--- a/core/fxcodec/codec/fx_codec_flate.cpp
+++ b/core/fxcodec/codec/ccodec_flatemodule.cpp
@@ -4,7 +4,7 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "core/fxcodec/fx_codec.h"
+#include "core/fxcodec/codec/ccodec_flatemodule.h"
#include <algorithm>
#include <limits>
@@ -12,8 +12,8 @@
#include <utility>
#include <vector>
-#include "core/fxcodec/codec/ccodec_flatemodule.h"
#include "core/fxcodec/codec/ccodec_scanlinedecoder.h"
+#include "core/fxcodec/fx_codec.h"
#include "core/fxcrt/fx_extension.h"
#include "third_party/base/numerics/safe_conversions.h"
#include "third_party/base/ptr_util.h"
diff --git a/core/fxcodec/codec/fx_codec_icc.cpp b/core/fxcodec/codec/ccodec_iccmodule.cpp
index 7ae93e59b4..74937b2807 100644
--- a/core/fxcodec/codec/fx_codec_icc.cpp
+++ b/core/fxcodec/codec/ccodec_iccmodule.cpp
@@ -4,11 +4,12 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
+#include "core/fxcodec/codec/ccodec_iccmodule.h"
+
#include <algorithm>
#include <memory>
#include <vector>
-#include "core/fxcodec/codec/ccodec_iccmodule.h"
#include "core/fxcodec/codec/codec_int.h"
namespace {
diff --git a/core/fxcodec/codec/fx_codec_jbig.cpp b/core/fxcodec/codec/ccodec_jbig2module.cpp
index 36d6a0609e..36d6a0609e 100644
--- a/core/fxcodec/codec/fx_codec_jbig.cpp
+++ b/core/fxcodec/codec/ccodec_jbig2module.cpp
diff --git a/core/fxcodec/codec/fx_codec_jpx_opj.cpp b/core/fxcodec/codec/ccodec_jpxmodule.cpp
index 3e44b19a9d..ce6a1301fd 100644
--- a/core/fxcodec/codec/fx_codec_jpx_opj.cpp
+++ b/core/fxcodec/codec/ccodec_jpxmodule.cpp
@@ -4,6 +4,8 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
+#include "core/fxcodec/codec/ccodec_jpxmodule.h"
+
#include <algorithm>
#include <limits>
#include <memory>
@@ -11,7 +13,6 @@
#include <vector>
#include "core/fpdfapi/page/cpdf_colorspace.h"
-#include "core/fxcodec/codec/ccodec_jpxmodule.h"
#include "core/fxcodec/codec/cjpx_decoder.h"
#include "core/fxcrt/fx_memory.h"
#include "core/fxcrt/fx_safe_types.h"