| 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_INCLUDE_FPDFAPI_FPDF_RENDER_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ |
| 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ |
| 9 | 9 |
| 10 #include "../fxge/fx_ge.h" | 10 #include "core/include/fxge/fx_ge.h" |
| 11 #include "fpdf_page.h" | 11 #include "fpdf_page.h" |
| 12 #include "third_party/base/nonstd_unique_ptr.h" | 12 #include "third_party/base/nonstd_unique_ptr.h" |
| 13 | 13 |
| 14 class CFX_GraphStateData; | 14 class CFX_GraphStateData; |
| 15 class CFX_PathData; | 15 class CFX_PathData; |
| 16 class CFX_RenderDevice; | 16 class CFX_RenderDevice; |
| 17 class CPDF_FormObject; | 17 class CPDF_FormObject; |
| 18 class CPDF_ImageCache; | 18 class CPDF_ImageCache; |
| 19 class CPDF_ImageObject; | 19 class CPDF_ImageObject; |
| 20 class CPDF_PathObject; | 20 class CPDF_PathObject; |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 public: | 286 public: |
| 287 CPDF_RenderConfig(); | 287 CPDF_RenderConfig(); |
| 288 ~CPDF_RenderConfig(); | 288 ~CPDF_RenderConfig(); |
| 289 int m_HalftoneLimit; | 289 int m_HalftoneLimit; |
| 290 int m_RenderStepLimit; | 290 int m_RenderStepLimit; |
| 291 }; | 291 }; |
| 292 | 292 |
| 293 FX_BOOL IsAvailableMatrix(const CFX_AffineMatrix& matrix); | 293 FX_BOOL IsAvailableMatrix(const CFX_AffineMatrix& matrix); |
| 294 | 294 |
| 295 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ | 295 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RENDER_H_ |
| OLD | NEW |