OLD | NEW |
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/src/fpdfapi/fpdf_page/pageint.h" | 7 #include "core/src/fpdfapi/fpdf_page/pageint.h" |
8 | 8 |
| 9 #include <vector> |
| 10 |
9 #include "core/include/fpdfapi/cpdf_document.h" | 11 #include "core/include/fpdfapi/cpdf_document.h" |
10 #include "core/include/fpdfapi/fpdf_module.h" | 12 #include "core/include/fpdfapi/fpdf_module.h" |
11 #include "core/include/fpdfapi/fpdf_page.h" | 13 #include "core/include/fpdfapi/fpdf_page.h" |
12 #include "core/include/fpdfapi/fpdf_serial.h" | 14 #include "core/include/fpdfapi/fpdf_serial.h" |
13 | 15 |
14 namespace { | 16 namespace { |
15 | 17 |
16 const char kPathOperatorSubpath = 'm'; | 18 const char kPathOperatorSubpath = 'm'; |
17 const char kPathOperatorLine = 'l'; | 19 const char kPathOperatorLine = 'l'; |
18 const char kPathOperatorCubicBezier1 = 'c'; | 20 const char kPathOperatorCubicBezier1 = 'c'; |
(...skipping 1783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1802 } else { | 1804 } else { |
1803 PDF_ReplaceAbbr(pElement); | 1805 PDF_ReplaceAbbr(pElement); |
1804 } | 1806 } |
1805 } | 1807 } |
1806 break; | 1808 break; |
1807 } | 1809 } |
1808 default: | 1810 default: |
1809 break; | 1811 break; |
1810 } | 1812 } |
1811 } | 1813 } |
OLD | NEW |