diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-11-19 14:08:03 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-11-19 14:08:03 -0800 |
commit | d1824ad8bc5fbbe7b040c8b69555a02a6e0e8fbe (patch) | |
tree | 972436a697e90881fd6024d8ceccd5a371fc4741 | |
parent | 8840ec9b5c54da9dc9aae3afb8585a2ff80758d9 (diff) | |
download | pdfium-d1824ad8bc5fbbe7b040c8b69555a02a6e0e8fbe.tar.xz |
Make core in master match XFA.
This weeks version, mostly whitespace.
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1466503002 .
-rw-r--r-- | core/include/fxcodec/fx_codec.h | 2 | ||||
-rw-r--r-- | core/include/fxcrt/fx_stream.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/core/include/fxcodec/fx_codec.h b/core/include/fxcodec/fx_codec.h index 90bde10b5a..c068a08025 100644 --- a/core/include/fxcodec/fx_codec.h +++ b/core/include/fxcodec/fx_codec.h @@ -317,6 +317,7 @@ class ICodec_IccModule { int pixels) = 0; virtual void SetComponents(FX_DWORD nComponents) = 0; }; + void AdobeCMYK_to_sRGB(FX_FLOAT c, FX_FLOAT m, FX_FLOAT y, @@ -332,7 +333,6 @@ void AdobeCMYK_to_sRGB1(uint8_t c, uint8_t& G, uint8_t& B); FX_BOOL MD5ComputeID(const void* buf, FX_DWORD dwSize, uint8_t ID[16]); - void FaxG4Decode(const uint8_t* src_buf, FX_DWORD src_size, int* pbitpos, diff --git a/core/include/fxcrt/fx_stream.h b/core/include/fxcrt/fx_stream.h index 7856dcbb12..3260807940 100644 --- a/core/include/fxcrt/fx_stream.h +++ b/core/include/fxcrt/fx_stream.h @@ -60,7 +60,6 @@ class IFX_StreamWrite { public: virtual ~IFX_StreamWrite() {} virtual void Release() = 0; - virtual FX_BOOL WriteBlock(const void* pData, size_t size) = 0; }; class IFX_FileWrite : public IFX_StreamWrite { |