Searched defs:ImageSource (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageSource.h62 class PLATFORM_EXPORT ImageSource { class in namespace:blink
63 WTF_MAKE_NONCOPYABLE(ImageSource);
75 ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
76 ~ImageSource();
78 // Tells the ImageSource that the Image no longer cares about decoded frame
82 // In response, the ImageSource should delete cached decoded data for other
H A DImageSource.cpp29 #include "platform/graphics/ImageSource.h"
36 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption) function in class:blink::ImageSource
42 ImageSource::~ImageSource()
46 size_t ImageSource::clearCacheExceptFrame(size_t clearExceptFrame)
51 bool ImageSource::initialized() const
56 void ImageSource
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
H A DWEBPImageDecoderTest.cpp60 PassOwnPtr<WEBPImageDecoder> createDecoder(ImageSource::AlphaOption alphaOption = ImageSource::AlphaNotPremultiplied) argument
62 return adoptPtr(new WEBPImageDecoder(alphaOption, ImageSource::GammaAndColorProfileApplied, ImageDecoder::noDecodedImageByteLimit));
252 OwnPtr<WEBPImageDecoder> decoderA = createDecoder(ImageSource::AlphaPremultiplied);
255 OwnPtr<WEBPImageDecoder> decoderB = createDecoder(ImageSource::AlphaNotPremultiplied);

Completed in 287 milliseconds