Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Side by Side Diff: core/fpdfapi/fpdf_render/include/cpdf_progressiverenderer.h

Issue 1805663002: Move core/include/fpdfapi/fpdf_page.h to correct locations. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfapi/fpdf_render/fpdf_render_text.cpp ('k') | core/fpdfdoc/doc_annot.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_FPDF_RENDER_INCLUDE_CPDF_PROGRESSIVERENDERER_H_ 7 #ifndef CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_PROGRESSIVERENDERER_H_
8 #define CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_PROGRESSIVERENDERER_H_ 8 #define CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_PROGRESSIVERENDERER_H_
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "core/fpdfapi/fpdf_page/cpdf_pageobjectlist.h"
12 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h" 13 #include "core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h"
13 #include "core/include/fpdfapi/fpdf_page.h"
14 #include "core/include/fxcrt/fx_coordinates.h" 14 #include "core/include/fxcrt/fx_coordinates.h"
15 #include "core/include/fxcrt/fx_system.h" 15 #include "core/include/fxcrt/fx_system.h"
16 16
17 class CPDF_RenderOptions; 17 class CPDF_RenderOptions;
18 class CPDF_RenderStatus; 18 class CPDF_RenderStatus;
19 class CFX_RenderDevice; 19 class CFX_RenderDevice;
20 class IFX_Pause; 20 class IFX_Pause;
21 21
22 class CPDF_ProgressiveRenderer { 22 class CPDF_ProgressiveRenderer {
23 public: 23 public:
(...skipping 29 matching lines...) Expand all
53 CFX_RenderDevice* const m_pDevice; 53 CFX_RenderDevice* const m_pDevice;
54 const CPDF_RenderOptions* const m_pOptions; 54 const CPDF_RenderOptions* const m_pOptions;
55 std::unique_ptr<CPDF_RenderStatus> m_pRenderStatus; 55 std::unique_ptr<CPDF_RenderStatus> m_pRenderStatus;
56 CFX_FloatRect m_ClipRect; 56 CFX_FloatRect m_ClipRect;
57 FX_DWORD m_LayerIndex; 57 FX_DWORD m_LayerIndex;
58 CPDF_RenderContext::Layer* m_pCurrentLayer; 58 CPDF_RenderContext::Layer* m_pCurrentLayer;
59 CPDF_PageObjectList::iterator m_LastObjectRendered; 59 CPDF_PageObjectList::iterator m_LastObjectRendered;
60 }; 60 };
61 61
62 #endif // CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_PROGRESSIVERENDERER_H_ 62 #endif // CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_PROGRESSIVERENDERER_H_
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_render/fpdf_render_text.cpp ('k') | core/fpdfdoc/doc_annot.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698