Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 
| 6 | 6 | 
| 7 #ifndef CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 7 #ifndef CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 
| 8 #define CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 8 #define CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 
| 9 | 9 | 
| 10 #include <map> | 10 #include <map> | 
| 11 #include <memory> | 11 #include <memory> | 
| 12 #include <vector> | 12 #include <vector> | 
| 13 | 13 | 
| 14 #include "core/include/fxcodec/fx_codec_def.h" | 14 #include "core/include/fxcodec/fx_codec_def.h" | 
| 15 #include "core/include/fxcrt/fx_basic.h" | 15 #include "core/include/fxcrt/fx_basic.h" | 
| 16 #include "core/include/fxcrt/fx_coordinates.h" // For FX_RECT. | 16 #include "core/include/fxcrt/fx_coordinates.h" // For FX_RECT. | 
| 17 #include "fx_codec_def.h" | 17 #include "core/include/fxcodec/fx_codec_def.h" | 
| 
 
Tom Sepez
2016/02/17 21:32:26
dup!
 
dsinclair
2016/02/17 21:54:00
Done.
 
 | |
| 18 | 18 | 
| 19 class CFX_DIBSource; | 19 class CFX_DIBSource; | 
| 20 class CJPX_Decoder; | 20 class CJPX_Decoder; | 
| 21 class CPDF_ColorSpace; | 21 class CPDF_ColorSpace; | 
| 22 class CPDF_PrivateData; | 22 class CPDF_PrivateData; | 
| 23 class CPDF_StreamAcc; | 23 class CPDF_StreamAcc; | 
| 24 class ICodec_BasicModule; | 24 class ICodec_BasicModule; | 
| 25 class ICodec_FaxModule; | 25 class ICodec_FaxModule; | 
| 26 class ICodec_FlateModule; | 26 class ICodec_FlateModule; | 
| 27 class ICodec_IccModule; | 27 class ICodec_IccModule; | 
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 549 FX_BOOL MD5ComputeID(const void* buf, FX_DWORD dwSize, uint8_t ID[16]); | 549 FX_BOOL MD5ComputeID(const void* buf, FX_DWORD dwSize, uint8_t ID[16]); | 
| 550 void FaxG4Decode(const uint8_t* src_buf, | 550 void FaxG4Decode(const uint8_t* src_buf, | 
| 551 FX_DWORD src_size, | 551 FX_DWORD src_size, | 
| 552 int* pbitpos, | 552 int* pbitpos, | 
| 553 uint8_t* dest_buf, | 553 uint8_t* dest_buf, | 
| 554 int width, | 554 int width, | 
| 555 int height, | 555 int height, | 
| 556 int pitch); | 556 int pitch); | 
| 557 | 557 | 
| 558 #endif // CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 558 #endif // CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 
| OLD | NEW |