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

Side by Side Diff: core/fpdfapi/parser/cpdf_parser.cpp

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_parser.h ('k') | core/fpdfapi/parser/cpdf_parser_embeddertest.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 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h" 7 #include "core/fpdfapi/parser/cpdf_parser.h"
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" 11 #include "core/fpdfapi/parser/cpdf_array.h"
12 #include "core/fpdfapi/fpdf_parser/cpdf_crypto_handler.h" 12 #include "core/fpdfapi/parser/cpdf_crypto_handler.h"
13 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" 13 #include "core/fpdfapi/parser/cpdf_dictionary.h"
14 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" 14 #include "core/fpdfapi/parser/cpdf_document.h"
15 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" 15 #include "core/fpdfapi/parser/cpdf_number.h"
16 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" 16 #include "core/fpdfapi/parser/cpdf_reference.h"
17 #include "core/fpdfapi/fpdf_parser/cpdf_security_handler.h" 17 #include "core/fpdfapi/parser/cpdf_security_handler.h"
18 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" 18 #include "core/fpdfapi/parser/cpdf_stream.h"
19 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" 19 #include "core/fpdfapi/parser/cpdf_stream_acc.h"
20 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" 20 #include "core/fpdfapi/parser/cpdf_syntax_parser.h"
21 #include "core/fpdfapi/fpdf_parser/fpdf_parser_utility.h" 21 #include "core/fpdfapi/parser/fpdf_parser_utility.h"
22 #include "core/fxcrt/fx_ext.h" 22 #include "core/fxcrt/fx_ext.h"
23 #include "core/fxcrt/fx_safe_types.h" 23 #include "core/fxcrt/fx_safe_types.h"
24 #include "third_party/base/stl_util.h" 24 #include "third_party/base/stl_util.h"
25 25
26 namespace { 26 namespace {
27 27
28 // A limit on the size of the xref table. Theoretical limits are higher, but 28 // A limit on the size of the xref table. Theoretical limits are higher, but
29 // this may be large enough in practice. 29 // this may be large enough in practice.
30 const int32_t kMaxXRefSize = 1048576; 30 const int32_t kMaxXRefSize = 1048576;
31 31
(...skipping 1596 matching lines...) Expand 10 before | Expand all | Expand 10 after
1628 if (!LoadLinearizedAllCrossRefV4(m_LastXRefOffset, m_dwXrefStartObjNum) && 1628 if (!LoadLinearizedAllCrossRefV4(m_LastXRefOffset, m_dwXrefStartObjNum) &&
1629 !LoadLinearizedAllCrossRefV5(m_LastXRefOffset)) { 1629 !LoadLinearizedAllCrossRefV5(m_LastXRefOffset)) {
1630 m_LastXRefOffset = 0; 1630 m_LastXRefOffset = 0;
1631 m_pSyntax->m_MetadataObjnum = dwSaveMetadataObjnum; 1631 m_pSyntax->m_MetadataObjnum = dwSaveMetadataObjnum;
1632 return FORMAT_ERROR; 1632 return FORMAT_ERROR;
1633 } 1633 }
1634 1634
1635 m_pSyntax->m_MetadataObjnum = dwSaveMetadataObjnum; 1635 m_pSyntax->m_MetadataObjnum = dwSaveMetadataObjnum;
1636 return SUCCESS; 1636 return SUCCESS;
1637 } 1637 }
OLDNEW
« no previous file with comments | « core/fpdfapi/parser/cpdf_parser.h ('k') | core/fpdfapi/parser/cpdf_parser_embeddertest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698