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

Side by Side Diff: core/fpdfapi/fpdf_render/include/cpdf_renderoptions.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_RENDEROPTIONS_H_ 7 #ifndef CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_RENDEROPTIONS_H_
8 #define CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_RENDEROPTIONS_H_ 8 #define CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_RENDEROPTIONS_H_
9 9
10 #include "core/fxcrt/include/fx_system.h" 10 #include "core/fxcrt/include/fx_system.h"
(...skipping 23 matching lines...) Expand all
34 #define RENDER_LIMITEDIMAGECACHE 0x80000000 34 #define RENDER_LIMITEDIMAGECACHE 0x80000000
35 35
36 class CPDF_RenderOptions { 36 class CPDF_RenderOptions {
37 public: 37 public:
38 CPDF_RenderOptions(); 38 CPDF_RenderOptions();
39 FX_ARGB TranslateColor(FX_ARGB argb) const; 39 FX_ARGB TranslateColor(FX_ARGB argb) const;
40 40
41 int m_ColorMode; 41 int m_ColorMode;
42 FX_COLORREF m_BackColor; 42 FX_COLORREF m_BackColor;
43 FX_COLORREF m_ForeColor; 43 FX_COLORREF m_ForeColor;
44 FX_DWORD m_Flags; 44 uint32_t m_Flags;
45 int m_Interpolation; 45 int m_Interpolation;
46 FX_DWORD m_AddFlags; 46 uint32_t m_AddFlags;
47 IPDF_OCContext* m_pOCContext; 47 IPDF_OCContext* m_pOCContext;
48 FX_DWORD m_dwLimitCacheSize; 48 uint32_t m_dwLimitCacheSize;
49 int m_HalftoneLimit; 49 int m_HalftoneLimit;
50 }; 50 };
51 51
52 #endif // CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_RENDEROPTIONS_H_ 52 #endif // CORE_FPDFAPI_FPDF_RENDER_INCLUDE_CPDF_RENDEROPTIONS_H_
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_render/include/cpdf_rendercontext.h ('k') | core/fpdfapi/fpdf_render/include/cpdf_textrenderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698