diff options
author | dan sinclair <dsinclair@chromium.org> | 2017-05-12 21:22:08 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-05-15 15:40:43 +0000 |
commit | d2afac1e9200478997e308eecc582a073185d7ab (patch) | |
tree | 1ec1a2c69168cb2ab3f1418fae0e9f1c754cebdb /core/fxge/win32/win32_int.h | |
parent | 017ebba6940e0fe5ff39122c033600f88f24539a (diff) | |
download | pdfium-d2afac1e9200478997e308eecc582a073185d7ab.tar.xz |
Convert CPSOutput to an IFX_WriteStream
This Cl updates CPSOutput to inherit from IFX_WriteStream and converts
the CFX_PSRenderer to accept an IFX_WriteStream instead of a CPSOutput.
Change-Id: Ibde5c7da1c2f6df0a10cb6e9a470e18fbab167b8
Reviewed-on: https://pdfium-review.googlesource.com/5431
Reviewed-by: Nicolás Peña <npm@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxge/win32/win32_int.h')
-rw-r--r-- | core/fxge/win32/win32_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxge/win32/win32_int.h b/core/fxge/win32/win32_int.h index 2f69c0ea57..d92d3b333c 100644 --- a/core/fxge/win32/win32_int.h +++ b/core/fxge/win32/win32_int.h @@ -11,6 +11,7 @@ #include <memory> +#include "core/fxcrt/cfx_retain_ptr.h" #include "core/fxge/cfx_pathdata.h" #include "core/fxge/ifx_renderdevicedriver.h" #include "core/fxge/win32/cfx_psrenderer.h" @@ -329,7 +330,6 @@ class CPSPrinterDriver : public IFX_RenderDeviceDriver { int m_nBitsPerPixel; int m_HorzSize; int m_VertSize; - std::unique_ptr<CPSOutput> m_pPSOutput; CFX_PSRenderer m_PSRenderer; }; |