summaryrefslogtreecommitdiff
path: root/core/fxge/win32/fx_win32_print.cpp
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2016-10-03 06:14:50 -0700
committerCommit bot <commit-bot@chromium.org>2016-10-03 06:14:50 -0700
commitc9347083c8b813454e971ce9e648cf7d8b25d60b (patch)
tree0b4e04aa82b94b20e6828fa60e23ddf84c7c7e09 /core/fxge/win32/fx_win32_print.cpp
parent3a88205e8ddce125d78fb6961f7eac2470bbcd55 (diff)
downloadpdfium-c9347083c8b813454e971ce9e648cf7d8b25d60b.tar.xz
Remove _FX_OS_ checks in core/fxge/win32/.
All the files are already excluded by the build system. Review-Url: https://codereview.chromium.org/2387863002
Diffstat (limited to 'core/fxge/win32/fx_win32_print.cpp')
-rw-r--r--core/fxge/win32/fx_win32_print.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/core/fxge/win32/fx_win32_print.cpp b/core/fxge/win32/fx_win32_print.cpp
index b83714d3e0..6d00d835d9 100644
--- a/core/fxge/win32/fx_win32_print.cpp
+++ b/core/fxge/win32/fx_win32_print.cpp
@@ -4,14 +4,13 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "core/fxcrt/fx_system.h"
-
-#if _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_DESKTOP_
-
#include <windows.h>
#include <algorithm>
+#include <memory>
+#include <vector>
+#include "core/fxcrt/fx_system.h"
#include "core/fxge/cfx_renderdevice.h"
#include "core/fxge/cfx_windowsdevice.h"
#include "core/fxge/dib/dib_int.h"
@@ -327,5 +326,3 @@ FX_BOOL CGdiPrinterDriver::DrawDeviceText(int nChars,
return FALSE;
#endif
}
-
-#endif // _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_DESKTOP_