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

Side by Side Diff: core/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp

Issue 2377393002: Move core/fxge/include to core/fxge (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/fpdf_page/fpdf_page_parser.cpp ('k') | core/fpdfapi/fpdf_page/pageint.h » ('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 #include "core/fpdfapi/fpdf_page/pageint.h" 7 #include "core/fpdfapi/fpdf_page/pageint.h"
8 8
9 #include <limits.h> 9 #include <limits.h>
10 10
(...skipping 12 matching lines...) Expand all
23 #include "core/fpdfapi/fpdf_parser/cpdf_null.h" 23 #include "core/fpdfapi/fpdf_parser/cpdf_null.h"
24 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" 24 #include "core/fpdfapi/fpdf_parser/cpdf_number.h"
25 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" 25 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h"
26 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" 26 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h"
27 #include "core/fpdfapi/fpdf_parser/cpdf_string.h" 27 #include "core/fpdfapi/fpdf_parser/cpdf_string.h"
28 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" 28 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h"
29 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h" 29 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h"
30 #include "core/fxcodec/fx_codec.h" 30 #include "core/fxcodec/fx_codec.h"
31 #include "core/fxcrt/fx_ext.h" 31 #include "core/fxcrt/fx_ext.h"
32 #include "core/fxcrt/fx_safe_types.h" 32 #include "core/fxcrt/fx_safe_types.h"
33 #include "core/fxge/include/cfx_fxgedevice.h" 33 #include "core/fxge/cfx_fxgedevice.h"
34 #include "core/fxge/include/cfx_renderdevice.h" 34 #include "core/fxge/cfx_renderdevice.h"
35 35
36 namespace { 36 namespace {
37 37
38 const uint32_t kMaxNestedArrayLevel = 512; 38 const uint32_t kMaxNestedArrayLevel = 512;
39 const uint32_t kMaxWordBuffer = 256; 39 const uint32_t kMaxWordBuffer = 256;
40 const FX_STRSIZE kMaxStringLength = 32767; 40 const FX_STRSIZE kMaxStringLength = 32767;
41 41
42 } // namespace 42 } // namespace
43 43
44 CPDF_StreamParser::CPDF_StreamParser(const uint8_t* pData, uint32_t dwSize) 44 CPDF_StreamParser::CPDF_StreamParser(const uint8_t* pData, uint32_t dwSize)
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 } 830 }
831 m_Status = Done; 831 m_Status = Done;
832 return; 832 return;
833 } 833 }
834 steps++; 834 steps++;
835 if (pPause && pPause->NeedToPauseNow()) { 835 if (pPause && pPause->NeedToPauseNow()) {
836 break; 836 break;
837 } 837 }
838 } 838 }
839 } 839 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/fpdf_page_parser.cpp ('k') | core/fpdfapi/fpdf_page/pageint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698