| 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 #ifndef CORE_SRC_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 7 #ifndef CORE_SRC_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ |
| 8 #define CORE_SRC_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 8 #define CORE_SRC_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 | 11 |
| 12 #include "../../../../third_party/base/nonstd_unique_ptr.h" | |
| 13 #include "../../../include/fpdfapi/fpdf_pageobj.h" | 12 #include "../../../include/fpdfapi/fpdf_pageobj.h" |
| 13 #include "third_party/base/nonstd_unique_ptr.h" |
| 14 | 14 |
| 15 class CFX_GlyphBitmap; | 15 class CFX_GlyphBitmap; |
| 16 class CPDF_QuickStretcher; | 16 class CPDF_QuickStretcher; |
| 17 | 17 |
| 18 #define TYPE3_MAX_BLUES 16 | 18 #define TYPE3_MAX_BLUES 16 |
| 19 | 19 |
| 20 class CPDF_Type3Glyphs { | 20 class CPDF_Type3Glyphs { |
| 21 public: | 21 public: |
| 22 CPDF_Type3Glyphs() { | 22 CPDF_Type3Glyphs() { |
| 23 m_GlyphMap.InitHashTable(253); | 23 m_GlyphMap.InitHashTable(253); |
| (...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 const uint8_t* m_RampB; | 635 const uint8_t* m_RampB; |
| 636 }; | 636 }; |
| 637 | 637 |
| 638 struct _CPDF_UniqueKeyGen { | 638 struct _CPDF_UniqueKeyGen { |
| 639 void Generate(int count, ...); | 639 void Generate(int count, ...); |
| 640 FX_CHAR m_Key[128]; | 640 FX_CHAR m_Key[128]; |
| 641 int m_KeyLen; | 641 int m_KeyLen; |
| 642 }; | 642 }; |
| 643 | 643 |
| 644 #endif // CORE_SRC_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ | 644 #endif // CORE_SRC_FPDFAPI_FPDF_RENDER_RENDER_INT_H_ |
| OLD | NEW |