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

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

Issue 1832173003: Remove FX_DWORD from core/ and delete definition (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
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>
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 // Maximum page objects to render before checking for pause. 48 // Maximum page objects to render before checking for pause.
49 static const int kStepLimit = 100; 49 static const int kStepLimit = 100;
50 50
51 Status m_Status; 51 Status m_Status;
52 CPDF_RenderContext* const m_pContext; 52 CPDF_RenderContext* const m_pContext;
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 uint32_t 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/fpdfapi/fpdf_render/include/cpdf_rendercontext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698