diff options
author | Nicolas Pena <npm@chromium.org> | 2017-04-06 15:29:20 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-06 19:44:17 +0000 |
commit | 8bf955c77fefe98a97676a52360590211f723dee (patch) | |
tree | 120b7d31af39f998768c2dd9df3e0be9fe12a041 /core/fxge/dib/ifx_scanlinecomposer.h | |
parent | 93c086c8bc8080e7591def6eb617dfd6d11b9932 (diff) | |
download | pdfium-8bf955c77fefe98a97676a52360590211f723dee.tar.xz |
Cleanup CFX_BitmapComposer
Remove default params, use more unique_ptr, and fix some nits.
Change-Id: I4ed9a576fb3ebd9afd64c6544d1f6a1103e9d270
Reviewed-on: https://pdfium-review.googlesource.com/3872
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'core/fxge/dib/ifx_scanlinecomposer.h')
-rw-r--r-- | core/fxge/dib/ifx_scanlinecomposer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxge/dib/ifx_scanlinecomposer.h b/core/fxge/dib/ifx_scanlinecomposer.h index 4df01dda23..7b070c02ff 100644 --- a/core/fxge/dib/ifx_scanlinecomposer.h +++ b/core/fxge/dib/ifx_scanlinecomposer.h @@ -15,7 +15,7 @@ class IFX_ScanlineComposer { virtual void ComposeScanline(int line, const uint8_t* scanline, - const uint8_t* scan_extra_alpha = nullptr) = 0; + const uint8_t* scan_extra_alpha) = 0; virtual bool SetInfo(int width, int height, |