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

Side by Side Diff: core/fpdfapi/parser/cpdf_stream_acc.h

Issue 2392603004: Move core/fpdfapi/fpdf_parser to core/fpdfapi/parser (Closed)
Patch Set: Rebase to master Created 4 years, 2 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/fpdfapi/parser/cpdf_stream.cpp ('k') | core/fpdfapi/parser/cpdf_stream_acc.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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_FPDFAPI_FPDF_PARSER_CPDF_STREAM_ACC_H_ 7 #ifndef CORE_FPDFAPI_PARSER_CPDF_STREAM_ACC_H_
8 #define CORE_FPDFAPI_FPDF_PARSER_CPDF_STREAM_ACC_H_ 8 #define CORE_FPDFAPI_PARSER_CPDF_STREAM_ACC_H_
9 9
10 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" 10 #include "core/fpdfapi/parser/cpdf_dictionary.h"
11 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" 11 #include "core/fpdfapi/parser/cpdf_stream.h"
12 #include "core/fxcrt/fx_string.h" 12 #include "core/fxcrt/fx_string.h"
13 #include "core/fxcrt/fx_system.h" 13 #include "core/fxcrt/fx_system.h"
14 14
15 class CPDF_StreamAcc { 15 class CPDF_StreamAcc {
16 public: 16 public:
17 CPDF_StreamAcc(); 17 CPDF_StreamAcc();
18 ~CPDF_StreamAcc(); 18 ~CPDF_StreamAcc();
19 19
20 void LoadAllData(const CPDF_Stream* pStream, 20 void LoadAllData(const CPDF_Stream* pStream,
21 FX_BOOL bRawAccess = FALSE, 21 FX_BOOL bRawAccess = FALSE,
(...skipping 14 matching lines...) Expand all
36 protected: 36 protected:
37 uint8_t* m_pData; 37 uint8_t* m_pData;
38 uint32_t m_dwSize; 38 uint32_t m_dwSize;
39 FX_BOOL m_bNewBuf; 39 FX_BOOL m_bNewBuf;
40 CFX_ByteString m_ImageDecoder; 40 CFX_ByteString m_ImageDecoder;
41 CPDF_Dictionary* m_pImageParam; 41 CPDF_Dictionary* m_pImageParam;
42 const CPDF_Stream* m_pStream; 42 const CPDF_Stream* m_pStream;
43 uint8_t* m_pSrcData; 43 uint8_t* m_pSrcData;
44 }; 44 };
45 45
46 #endif // CORE_FPDFAPI_FPDF_PARSER_CPDF_STREAM_ACC_H_ 46 #endif // CORE_FPDFAPI_PARSER_CPDF_STREAM_ACC_H_
OLDNEW
« no previous file with comments | « core/fpdfapi/parser/cpdf_stream.cpp ('k') | core/fpdfapi/parser/cpdf_stream_acc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698