| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved. | 2  * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved. | 
| 3  * | 3  * | 
| 4  * Redistribution and use in source and binary forms, with or without | 4  * Redistribution and use in source and binary forms, with or without | 
| 5  * modification, are permitted provided that the following conditions | 5  * modification, are permitted provided that the following conditions | 
| 6  * are met: | 6  * are met: | 
| 7  * 1. Redistributions of source code must retain the above copyright | 7  * 1. Redistributions of source code must retain the above copyright | 
| 8  *    notice, this list of conditions and the following disclaimer. | 8  *    notice, this list of conditions and the following disclaimer. | 
| 9  * 2. Redistributions in binary form must reproduce the above copyright | 9  * 2. Redistributions in binary form must reproduce the above copyright | 
| 10  *    notice, this list of conditions and the following disclaimer in the | 10  *    notice, this list of conditions and the following disclaimer in the | 
| (...skipping 23 matching lines...) Expand all  Loading... | 
| 34 | 34 | 
| 35 class PLATFORM_EXPORT PNGImageDecoder : public ImageDecoder { | 35 class PLATFORM_EXPORT PNGImageDecoder : public ImageDecoder { | 
| 36     WTF_MAKE_NONCOPYABLE(PNGImageDecoder); | 36     WTF_MAKE_NONCOPYABLE(PNGImageDecoder); | 
| 37 public: | 37 public: | 
| 38     PNGImageDecoder(AlphaOption, GammaAndColorProfileOption, size_t maxDecodedBy
    tes, unsigned offset = 0); | 38     PNGImageDecoder(AlphaOption, GammaAndColorProfileOption, size_t maxDecodedBy
    tes, unsigned offset = 0); | 
| 39     ~PNGImageDecoder() override; | 39     ~PNGImageDecoder() override; | 
| 40 | 40 | 
| 41     // ImageDecoder: | 41     // ImageDecoder: | 
| 42     String filenameExtension() const override { return "png"; } | 42     String filenameExtension() const override { return "png"; } | 
| 43     bool hasColorProfile() const override { return m_hasColorProfile; } | 43     bool hasColorProfile() const override { return m_hasColorProfile; } | 
|  | 44     PassRefPtr<ColorSpaceProfile> colorProfile() const override { return m_color
    Profile; }; | 
|  | 45     void setDeviceProfile(ColorSpaceProfile* device) override { m_deviceProfile 
    = device; } | 
|  | 46     PassRefPtr<ColorSpaceProfile> deviceProfile() const override { return m_devi
    ceProfile; }; | 
| 44 | 47 | 
| 45     // Callbacks from libpng | 48     // Callbacks from libpng | 
| 46     void headerAvailable(); | 49     void headerAvailable(); | 
| 47     void rowAvailable(unsigned char* row, unsigned rowIndex, int); | 50     void rowAvailable(unsigned char* row, unsigned rowIndex, int); | 
| 48     void complete(); | 51     void complete(); | 
| 49 | 52 | 
| 50 private: | 53 private: | 
| 51     // ImageDecoder: | 54     // ImageDecoder: | 
| 52     void decodeSize() override { decode(true); } | 55     void decodeSize() override { decode(true); } | 
| 53     void decode(size_t) override { decode(false); } | 56     void decode(size_t) override { decode(false); } | 
| 54 | 57 | 
| 55     // Decodes the image.  If |onlySize| is true, stops decoding after | 58     // Decodes the image.  If |onlySize| is true, stops decoding after | 
| 56     // calculating the image size.  If decoding fails but there is no more | 59     // calculating the image size.  If decoding fails but there is no more | 
| 57     // data coming, sets the "decode failure" flag. | 60     // data coming, sets the "decode failure" flag. | 
| 58     void decode(bool onlySize); | 61     void decode(bool onlySize); | 
| 59 | 62 | 
| 60     OwnPtr<PNGImageReader> m_reader; | 63     OwnPtr<PNGImageReader> m_reader; | 
|  | 64     RefPtr<ColorSpaceProfile> m_colorProfile; | 
|  | 65     RefPtr<ColorSpaceProfile> m_deviceProfile; | 
| 61     bool m_hasColorProfile; | 66     bool m_hasColorProfile; | 
| 62     const unsigned m_offset; | 67     const unsigned m_offset; | 
| 63 }; | 68 }; | 
| 64 | 69 | 
| 65 } // namespace blink | 70 } // namespace blink | 
| 66 | 71 | 
| 67 #endif | 72 #endif | 
| OLD | NEW | 
|---|