From 5fc239a0e64a5e16a23b99e128f88cc494d5b65c Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 10 Mar 2016 14:10:38 -0800 Subject: Split fpdf_parser_objects.cpp into per-class .cpp/.h files. R=dsinclair@chromium.org Review URL: https://codereview.chromium.org/1776913007 . --- core/src/fxcodec/jbig2/JBig2_BitStream.cpp | 2 +- core/src/fxcodec/jbig2/JBig2_Context.cpp | 1 + core/src/fxcodec/jbig2/JBig2_Context.h | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'core/src/fxcodec') diff --git a/core/src/fxcodec/jbig2/JBig2_BitStream.cpp b/core/src/fxcodec/jbig2/JBig2_BitStream.cpp index 5e99e80e7c..1fe7a26aa8 100644 --- a/core/src/fxcodec/jbig2/JBig2_BitStream.cpp +++ b/core/src/fxcodec/jbig2/JBig2_BitStream.cpp @@ -8,7 +8,7 @@ #include -#include "core/include/fpdfapi/fpdf_objects.h" +#include "core/include/fpdfapi/cpdf_stream.h" CJBig2_BitStream::CJBig2_BitStream(CPDF_StreamAcc* pSrcStream) : m_pBuf(pSrcStream->GetData()), diff --git a/core/src/fxcodec/jbig2/JBig2_Context.cpp b/core/src/fxcodec/jbig2/JBig2_Context.cpp index 399ff68657..9279971b46 100644 --- a/core/src/fxcodec/jbig2/JBig2_Context.cpp +++ b/core/src/fxcodec/jbig2/JBig2_Context.cpp @@ -11,6 +11,7 @@ #include #include +#include "core/include/fpdfapi/cpdf_stream.h" #include "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h" #include "core/src/fxcodec/jbig2/JBig2_BitStream.h" #include "core/src/fxcodec/jbig2/JBig2_GrdProc.h" diff --git a/core/src/fxcodec/jbig2/JBig2_Context.h b/core/src/fxcodec/jbig2/JBig2_Context.h index ff62062c1f..68c575392a 100644 --- a/core/src/fxcodec/jbig2/JBig2_Context.h +++ b/core/src/fxcodec/jbig2/JBig2_Context.h @@ -11,7 +11,7 @@ #include #include -#include "core/include/fpdfapi/fpdf_objects.h" +#include "core/include/fpdfapi/cpdf_object.h" #include "core/include/fxcodec/fx_codec_def.h" #include "core/src/fxcodec/jbig2/JBig2_List.h" #include "core/src/fxcodec/jbig2/JBig2_Page.h" @@ -19,6 +19,7 @@ class CJBig2_ArithDecoder; class CJBig2_GRDProc; +class CPDF_StreamAcc; class IFX_Pause; // Cache is keyed by the ObjNum of a stream and an index within the stream. -- cgit v1.2.3