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

Side by Side Diff: core/fpdfapi/fpdf_page/fpdf_page_parser.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/cpdf_path.h ('k') | core/fpdfapi/fpdf_page/fpdf_page_parser_old.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 #include "core/fpdfapi/fpdf_page/pageint.h" 7 #include "core/fpdfapi/fpdf_page/pageint.h"
8 8
9 #include <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
(...skipping 16 matching lines...) Expand all
27 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" 27 #include "core/fpdfapi/fpdf_parser/cpdf_array.h"
28 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" 28 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h"
29 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" 29 #include "core/fpdfapi/fpdf_parser/cpdf_document.h"
30 #include "core/fpdfapi/fpdf_parser/cpdf_name.h" 30 #include "core/fpdfapi/fpdf_parser/cpdf_name.h"
31 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" 31 #include "core/fpdfapi/fpdf_parser/cpdf_number.h"
32 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" 32 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h"
33 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" 33 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h"
34 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" 34 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h"
35 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h" 35 #include "core/fpdfapi/fpdf_parser/fpdf_parser_decode.h"
36 #include "core/fxcrt/fx_safe_types.h" 36 #include "core/fxcrt/fx_safe_types.h"
37 #include "core/fxge/include/cfx_graphstatedata.h" 37 #include "core/fxge/cfx_graphstatedata.h"
38 #include "core/fxge/include/cfx_pathdata.h" 38 #include "core/fxge/cfx_pathdata.h"
39 39
40 namespace { 40 namespace {
41 41
42 const int kSingleCoordinatePair = 1; 42 const int kSingleCoordinatePair = 1;
43 const int kTensorCoordinatePairs = 16; 43 const int kTensorCoordinatePairs = 16;
44 const int kCoonsCoordinatePairs = 12; 44 const int kCoonsCoordinatePairs = 12;
45 const int kSingleColorPerPatch = 1; 45 const int kSingleColorPerPatch = 1;
46 const int kQuadColorsPerPatch = 4; 46 const int kQuadColorsPerPatch = 4;
47 47
48 const char kPathOperatorSubpath = 'm'; 48 const char kPathOperatorSubpath = 'm';
(...skipping 1624 matching lines...) Expand 10 before | Expand all | Expand 10 after
1673 } else { 1673 } else {
1674 PDF_ReplaceAbbr(pElement); 1674 PDF_ReplaceAbbr(pElement);
1675 } 1675 }
1676 } 1676 }
1677 break; 1677 break;
1678 } 1678 }
1679 default: 1679 default:
1680 break; 1680 break;
1681 } 1681 }
1682 } 1682 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_path.h ('k') | core/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698