HomeSort by relevance Sort by last modified time
    Searched refs:GammaAndColorProfileOption (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.h 71 enum GammaAndColorProfileOption {
76 ImageSource(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
129 GammaAndColorProfileOption m_gammaAndColorProfileOption;
DeferredImageDecoder.h 48 static PassOwnPtr<DeferredImageDecoder> create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
ImageSource.cpp 38 ImageSource::ImageSource(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
40 , m_gammaAndColorProfileOption(gammaAndColorProfileOption)
DeferredImageDecoder.cpp 62 PassOwnPtr<DeferredImageDecoder> DeferredImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorOption)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageDecoder.h 42 BMPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
BMPImageDecoder.cpp 45 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
47 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h 43 JPEGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
JPEGImageDecoder.cpp 595 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
597 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.h 41 PNGImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
PNGImageDecoder.cpp 218 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
220 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h 61 ImageDecoder(ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes)
63 , m_ignoreGammaAndColorProfile(gammaAndColorProfileOption == ImageSource::GammaAndColorProfileIgnored)
75 static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption);
78 static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data, ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedSize);
ImageDecoder.cpp 84 PassOwnPtr<ImageDecoder> ImageDecoder::create(const SharedBuffer& data, ImageSource::AlphaOption alphaOption, ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption)
96 return adoptPtr(new JPEGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
99 return adoptPtr(new PNGImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
102 return adoptPtr(new GIFImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
105 return adoptPtr(new ICOImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
108 return adoptPtr(new WEBPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
111 return adoptPtr(new BMPImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes));
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.h 43 GIFImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
GIFImageDecoder.cpp 38 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
40 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
ICOImageDecoder.h 43 ICOImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
ICOImageDecoder.cpp 49 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
51 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h 41 WEBPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
WEBPImageDecoder.cpp 52 ImageSource::GammaAndColorProfileOption gammaAndColorProfileOption,
54 : ImageDecoder(alphaOption, gammaAndColorProfileOption, maxDecodedBytes)

Completed in 461 milliseconds