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

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

Issue 1425153006: Fix all relative includes to third_party. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: rebase Created 5 years, 1 month 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/fxcodec/DEPS ('k') | core/src/fxcodec/codec/fx_codec.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 #include <list> 11 #include <list>
12 #include <map> 12 #include <map>
13 13
14 #include "../../../../third_party/base/nonstd_unique_ptr.h"
15 #include "../../../../third_party/libopenjpeg20/openjpeg.h" // For OPJ_SIZE_T.
16 #include "../../../include/fxcodec/fx_codec.h" 14 #include "../../../include/fxcodec/fx_codec.h"
17 #include "../jbig2/JBig2_Context.h" 15 #include "../jbig2/JBig2_Context.h"
16 #include "third_party/base/nonstd_unique_ptr.h"
17 #include "third_party/libopenjpeg20/openjpeg.h" // For OPJ_SIZE_T.
18 18
19 class CFX_IccProfileCache; 19 class CFX_IccProfileCache;
20 class CFX_IccTransformCache; 20 class CFX_IccTransformCache;
21 21
22 class CCodec_BasicModule : public ICodec_BasicModule { 22 class CCodec_BasicModule : public ICodec_BasicModule {
23 public: 23 public:
24 virtual FX_BOOL RunLengthEncode(const uint8_t* src_buf, 24 virtual FX_BOOL RunLengthEncode(const uint8_t* src_buf,
25 FX_DWORD src_size, 25 FX_DWORD src_size,
26 uint8_t*& dest_buf, 26 uint8_t*& dest_buf,
27 FX_DWORD& dest_size); 27 FX_DWORD& dest_size);
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 OPJ_SIZE_T opj_read_from_memory(void* p_buffer, 316 OPJ_SIZE_T opj_read_from_memory(void* p_buffer,
317 OPJ_SIZE_T nb_bytes, 317 OPJ_SIZE_T nb_bytes,
318 void* p_user_data); 318 void* p_user_data);
319 OPJ_SIZE_T opj_write_from_memory(void* p_buffer, 319 OPJ_SIZE_T opj_write_from_memory(void* p_buffer,
320 OPJ_SIZE_T nb_bytes, 320 OPJ_SIZE_T nb_bytes,
321 void* p_user_data); 321 void* p_user_data);
322 OPJ_OFF_T opj_skip_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data); 322 OPJ_OFF_T opj_skip_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data);
323 OPJ_BOOL opj_seek_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data); 323 OPJ_BOOL opj_seek_from_memory(OPJ_OFF_T nb_bytes, void* p_user_data);
324 324
325 #endif // CORE_SRC_FXCODEC_CODEC_CODEC_INT_H_ 325 #endif // CORE_SRC_FXCODEC_CODEC_CODEC_INT_H_
OLDNEW
« no previous file with comments | « core/src/fxcodec/DEPS ('k') | core/src/fxcodec/codec/fx_codec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698