Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(487)

Side by Side Diff: core/src/fxcodec/codec/codec_int.h

Issue 1773733002: Review and cleanup lint warnings. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/src/fpdftext/fpdf_text_int.cpp ('k') | core/src/fxcodec/codec/fx_codec_jbig.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_SRC_FXCODEC_CODEC_CODEC_INT_H_ 7 #ifndef CORE_SRC_FXCODEC_CODEC_CODEC_INT_H_
8 #define CORE_SRC_FXCODEC_CODEC_CODEC_INT_H_ 8 #define CORE_SRC_FXCODEC_CODEC_CODEC_INT_H_
9 9
10 #include <limits.h> 10 #include <limits.h>
11 11
12 #include <list> 12 #include <list>
13 #include <map> 13 #include <map>
14 #include <memory> 14 #include <memory>
15 #include <vector>
15 16
16 #include "core/include/fxcodec/fx_codec.h" 17 #include "core/include/fxcodec/fx_codec.h"
17 #include "core/src/fxcodec/jbig2/JBig2_Context.h" 18 #include "core/src/fxcodec/jbig2/JBig2_Context.h"
18 #include "third_party/libopenjpeg20/openjpeg.h" // For OPJ_SIZE_T. 19 #include "third_party/libopenjpeg20/openjpeg.h" // For OPJ_SIZE_T.
19 20
20 class CFX_IccProfileCache; 21 class CFX_IccProfileCache;
21 class CFX_IccTransformCache; 22 class CFX_IccTransformCache;
22 class CPDF_ColorSpace; 23 class CPDF_ColorSpace;
23 24
24 class CCodec_BasicModule : public ICodec_BasicModule { 25 class CCodec_BasicModule : public ICodec_BasicModule {
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 OPJ_SIZE_T opj_read_from_memory(void* p_buffer, 419 OPJ_SIZE_T opj_read_from_memory(void* p_buffer,
419 OPJ_SIZE_T nb_bytes, 420 OPJ_SIZE_T nb_bytes,
420 void* p_user_data); 421 void* p_user_data);
421 OPJ_SIZE_T opj_write_from_memory(void* p_buffer, 422 OPJ_SIZE_T opj_write_from_memory(void* p_buffer,
422 OPJ_SIZE_T nb_bytes, 423 OPJ_SIZE_T nb_bytes,
423 void* p_user_data); 424 void* p_user_data);
424 OPJ_OFF_T opj_skip_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data); 425 OPJ_OFF_T opj_skip_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data);
425 OPJ_BOOL opj_seek_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data); 426 OPJ_BOOL opj_seek_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data);
426 427
427 #endif // CORE_SRC_FXCODEC_CODEC_CODEC_INT_H_ 428 #endif // CORE_SRC_FXCODEC_CODEC_CODEC_INT_H_
OLDNEW
« no previous file with comments | « core/src/fpdftext/fpdf_text_int.cpp ('k') | core/src/fxcodec/codec/fx_codec_jbig.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698