| OLD | NEW |
| 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 #ifndef CORE_FPDFAPI_PAGE_CPDF_STREAMCONTENTPARSER_H_ | 7 #ifndef CORE_FPDFAPI_PAGE_CPDF_STREAMCONTENTPARSER_H_ |
| 8 #define CORE_FPDFAPI_PAGE_CPDF_STREAMCONTENTPARSER_H_ | 8 #define CORE_FPDFAPI_PAGE_CPDF_STREAMCONTENTPARSER_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 FX_PATHPOINT* m_pPathPoints; | 209 FX_PATHPOINT* m_pPathPoints; |
| 210 int m_PathPointCount; | 210 int m_PathPointCount; |
| 211 int m_PathAllocSize; | 211 int m_PathAllocSize; |
| 212 FX_FLOAT m_PathStartX; | 212 FX_FLOAT m_PathStartX; |
| 213 FX_FLOAT m_PathStartY; | 213 FX_FLOAT m_PathStartY; |
| 214 FX_FLOAT m_PathCurrentX; | 214 FX_FLOAT m_PathCurrentX; |
| 215 FX_FLOAT m_PathCurrentY; | 215 FX_FLOAT m_PathCurrentY; |
| 216 uint8_t m_PathClipType; | 216 uint8_t m_PathClipType; |
| 217 CFX_ByteString m_LastImageName; | 217 CFX_ByteString m_LastImageName; |
| 218 CPDF_Image* m_pLastImage; | 218 CPDF_Image* m_pLastImage; |
| 219 CPDF_Dictionary* m_pLastImageDict; | |
| 220 CPDF_Dictionary* m_pLastCloneImageDict; | |
| 221 bool m_bColored; | 219 bool m_bColored; |
| 222 FX_FLOAT m_Type3Data[6]; | 220 FX_FLOAT m_Type3Data[6]; |
| 223 bool m_bResourceMissing; | 221 bool m_bResourceMissing; |
| 224 std::vector<std::unique_ptr<CPDF_AllStates>> m_StateStack; | 222 std::vector<std::unique_ptr<CPDF_AllStates>> m_StateStack; |
| 225 }; | 223 }; |
| 226 | 224 |
| 227 #endif // CORE_FPDFAPI_PAGE_CPDF_STREAMCONTENTPARSER_H_ | 225 #endif // CORE_FPDFAPI_PAGE_CPDF_STREAMCONTENTPARSER_H_ |
| OLD | NEW |