Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-26 | Explicitly use binary mode when opening files in the pdfium_test sample. | John Abd-El-Malek | |
This patch adds the 'b' (binary mode) flag to the fopen calls. Before the fix the PPM images written with --write_images were corrupted under Windows because on this platform in text mode all occurrences of the byte 0xa (line feed) are replaced with the bytes 0x0d (carriage return) and 0x0a (line feed). On UNIX platforms the 'b' flag is supported but ignored, because no translation of the line feed character takes place. BUG=18 R=jam@chromium.org Original patch by Michael Doppler <m.doppler@gmail.com> Review URL: https://codereview.chromium.org/343303004 | |||
2014-05-26 | Fix build error on win x64.chromium/2022chromium/2021chromium/2020chromium/2019chromium/2018chromium/2017chromium/2016chromium/2015 | John Abd-El-Malek | |
2014-05-23 | Switch include paths to fpdfsdk back to be relative so that pdfium_test can ↵ | John Abd-El-Malek | |
be built from a Chromium checkout. | |||
2014-05-23 | Convert all line endings to LF. | John Abd-El-Malek | |
2014-05-23 | Create a standalone pdfium build. | John Abd-El-Malek | |
I moved pdfium_test from chromium's repo to pdfium's. It's now buildable as a sample following the instructions on the wiki. |