diff options
author | Nico Weber <thakis@chromium.org> | 2015-08-04 13:00:21 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2015-08-04 13:00:21 -0700 |
commit | 9d8ec5a6e37e8d1d4d4edca9040de234e2d4728f (patch) | |
tree | c97037f398d714665aefccb6eb54d0969ad7030c /samples | |
parent | 780cee82236d1b3b0f9b01a22424e4b8ec9a6f12 (diff) | |
download | pdfium-9d8ec5a6e37e8d1d4d4edca9040de234e2d4728f.tar.xz |
XFA: clang-format all pdfium code.
No behavior change.
Generated by:
find . -name '*.cpp' -o -name '*.h' | \
grep -E -v 'third_party|thirdparties|lpng_v163|tiff_v403' | \
xargs ../../buildtools/mac/clang-format -i
Then manually merged https://codereview.chromium.org/1269223002/
See thread "tabs vs spaces" on pdfium@googlegroups.com for discussion.
BUG=none
Diffstat (limited to 'samples')
-rw-r--r-- | samples/image_diff_png.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/samples/image_diff_png.h b/samples/image_diff_png.h index 9febb3744c..7e0afecf83 100644 --- a/samples/image_diff_png.h +++ b/samples/image_diff_png.h @@ -12,9 +12,11 @@ namespace image_diff_png { // Decode a PNG into an RGBA pixel array. -bool DecodePNG(const unsigned char* input, size_t input_size, +bool DecodePNG(const unsigned char* input, + size_t input_size, std::vector<unsigned char>* output, - int* width, int* height); + int* width, + int* height); // Encode an RGBA pixel array into a PNG. bool EncodeRGBAPNG(const unsigned char* input, |