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

Unified Diff: core/fxge/include/fx_ge_win32.h

Issue 2019603002: Remove unused PS generation code. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@print_clean
Patch Set: rebase Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/fxge/include/fx_ge.h ('k') | core/fxge/win32/fx_win32_device.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fxge/include/fx_ge_win32.h
diff --git a/core/fxge/include/fx_ge_win32.h b/core/fxge/include/fx_ge_win32.h
index b4337c117cda7ecd332a5592e562a55e03962175..a6d8fbb378c95fae2a0b400ced36ddbdb61456ff 100644
--- a/core/fxge/include/fx_ge_win32.h
+++ b/core/fxge/include/fx_ge_win32.h
@@ -22,6 +22,7 @@ typedef struct WINDIB_Open_Args_ {
const FX_WCHAR* path_name;
} WINDIB_Open_Args_;
+
class CFX_WindowsDIB : public CFX_DIBitmap {
public:
static CFX_ByteString GetBitmapInfo(const CFX_DIBitmap* pBitmap);
@@ -62,26 +63,20 @@ class CFX_WindowsDIB : public CFX_DIBitmap {
HBITMAP m_hOldBitmap;
};
+
class CFX_WindowsDevice : public CFX_RenderDevice {
public:
- static IFX_RenderDeviceDriver* CreateDriver(HDC hDC,
- FX_BOOL bCmykOutput = FALSE);
+ static IFX_RenderDeviceDriver* CreateDriver(HDC hDC);
- CFX_WindowsDevice(HDC hDC,
- FX_BOOL bCmykOutput = FALSE,
- FX_BOOL bForcePSOutput = FALSE,
- int psLevel = 2);
+ explicit CFX_WindowsDevice(HDC hDC);
+ ~CFX_WindowsDevice();
HDC GetDC() const;
-
- FX_BOOL m_bForcePSOutput;
-
- static int m_psLevel;
};
+
class CFX_WinBitmapDevice : public CFX_RenderDevice {
public:
CFX_WinBitmapDevice(int width, int height, FXDIB_Format format);
-
~CFX_WinBitmapDevice();
HDC GetDC() { return m_hDC; }
« no previous file with comments | « core/fxge/include/fx_ge.h ('k') | core/fxge/win32/fx_win32_device.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698