| 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/fpdfapi/page/pageint.h" | 7 #include "core/fpdfapi/page/pageint.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <utility> | 10 #include <utility> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "core/fpdfapi/edit/cpdf_creator.h" | 13 #include "core/fpdfapi/edit/cpdf_creator.h" |
| 14 #include "core/fpdfapi/font/cpdf_font.h" | 14 #include "core/fpdfapi/font/cpdf_font.h" |
| 15 #include "core/fpdfapi/font/cpdf_type3font.h" | 15 #include "core/fpdfapi/font/cpdf_type3font.h" |
| 16 #include "core/fpdfapi/page/cpdf_allstates.h" | 16 #include "core/fpdfapi/page/cpdf_allstates.h" |
| 17 #include "core/fpdfapi/page/cpdf_docpagedata.h" |
| 17 #include "core/fpdfapi/page/cpdf_form.h" | 18 #include "core/fpdfapi/page/cpdf_form.h" |
| 18 #include "core/fpdfapi/page/cpdf_formobject.h" | 19 #include "core/fpdfapi/page/cpdf_formobject.h" |
| 19 #include "core/fpdfapi/page/cpdf_image.h" | 20 #include "core/fpdfapi/page/cpdf_image.h" |
| 20 #include "core/fpdfapi/page/cpdf_imageobject.h" | 21 #include "core/fpdfapi/page/cpdf_imageobject.h" |
| 21 #include "core/fpdfapi/page/cpdf_meshstream.h" | 22 #include "core/fpdfapi/page/cpdf_meshstream.h" |
| 22 #include "core/fpdfapi/page/cpdf_pageobject.h" | 23 #include "core/fpdfapi/page/cpdf_pageobject.h" |
| 23 #include "core/fpdfapi/page/cpdf_pathobject.h" | 24 #include "core/fpdfapi/page/cpdf_pathobject.h" |
| 24 #include "core/fpdfapi/page/cpdf_shadingobject.h" | 25 #include "core/fpdfapi/page/cpdf_shadingobject.h" |
| 25 #include "core/fpdfapi/page/cpdf_shadingpattern.h" | 26 #include "core/fpdfapi/page/cpdf_shadingpattern.h" |
| 26 #include "core/fpdfapi/page/cpdf_textobject.h" | 27 #include "core/fpdfapi/page/cpdf_textobject.h" |
| (...skipping 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1659 } else { | 1660 } else { |
| 1660 PDF_ReplaceAbbr(pElement); | 1661 PDF_ReplaceAbbr(pElement); |
| 1661 } | 1662 } |
| 1662 } | 1663 } |
| 1663 break; | 1664 break; |
| 1664 } | 1665 } |
| 1665 default: | 1666 default: |
| 1666 break; | 1667 break; |
| 1667 } | 1668 } |
| 1668 } | 1669 } |
| OLD | NEW |