OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MockImageDecoderFactory
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockImageDecoder.h
116
class
MockImageDecoderFactory
: public ImageDecoderFactory {
118
static PassOwnPtr<
MockImageDecoderFactory
> create(MockImageDecoderClient* client, const SkISize& decodedSize)
120
return adoptPtr(new
MockImageDecoderFactory
(client, IntSize(decodedSize.width(), decodedSize.height())));
123
static PassOwnPtr<
MockImageDecoderFactory
> create(MockImageDecoderClient* client, const IntSize& decodedSize)
125
return adoptPtr(new
MockImageDecoderFactory
(client, decodedSize));
137
MockImageDecoderFactory
(MockImageDecoderClient* client, const IntSize& decodedSize)
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DeferredImageDecoderTest.cpp
138
m_lazyDecoder->frameGenerator()->setImageDecoderFactory(
MockImageDecoderFactory
::create(this, m_decodedSize));
ImageFrameGeneratorTest.cpp
90
m_generator->setImageDecoderFactory(
MockImageDecoderFactory
::create(this, fullSize()));
Completed in 390 milliseconds