Searched refs:hasColorProfile (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h49 virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
68 void setHasColorProfile(bool hasColorProfile) { m_hasColorProfile = hasColorProfile; } argument
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
H A DPNGImageDecoder.h47 virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DBitmapImageTest.cpp195 EXPECT_TRUE(m_image->hasColorProfile());
203 EXPECT_FALSE(m_image->hasColorProfile());
211 EXPECT_TRUE(m_image->hasColorProfile());
219 EXPECT_FALSE(m_image->hasColorProfile());
227 EXPECT_TRUE(m_image->hasColorProfile());
235 EXPECT_FALSE(m_image->hasColorProfile());
H A DImageSource.cpp82 bool ImageSource::hasColorProfile() const function in class:blink::ImageSource
84 return m_decoder && m_decoder->hasColorProfile();
H A DDeferredImageDecoder.h65 bool hasColorProfile() const;
H A DImageSource.h105 bool hasColorProfile() const;
H A DDeferredImageDecoder.cpp131 bool DeferredImageDecoder::hasColorProfile() const function in class:blink::DeferredImageDecoder
133 return m_actualDecoder ? m_actualDecoder->hasColorProfile() : m_hasColorProfile;
211 m_hasColorProfile = m_actualDecoder->hasColorProfile();
H A DBitmapImage.h70 bool hasColorProfile() const;
H A DBitmapImage.cpp251 bool BitmapImage::hasColorProfile() const function in class:blink::BitmapImage
253 return m_source.hasColorProfile();
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
H A DWEBPImageDecoder.h46 virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageDecoder.h177 virtual bool hasColorProfile() const { return false; } function in class:blink::ImageDecoder

Completed in 144 milliseconds