OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AspectRatioOption
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/html/
ImageResizerThread.h
45
static bool start(PassRefPtr<SharedBuffer> imageData, AsyncImageResizer::CallbackInfo*, AsyncImageResizer::OutputType, IntSize desiredBounds, float quality, AsyncImageResizer::
AspectRatioOption
, AsyncImageResizer::OrientationOption);
49
ImageResizerThread(AsyncImageResizer::CallbackInfo*, AsyncImageResizer::OutputType, IntSize desiredBounds, float quality, AsyncImageResizer::
AspectRatioOption
, AsyncImageResizer::OrientationOption);
62
AsyncImageResizer::
AspectRatioOption
m_aspectRatioOption;
AsyncImageResizer.h
70
enum
AspectRatioOption
{
80
static PassRefPtr<AsyncImageResizer> create(CachedImage*, OutputType, IntSize desiredBounds, ScriptValue successCallback, ScriptValue errorCallback, float quality,
AspectRatioOption
, OrientationOption);
89
AsyncImageResizer(CachedImage*, OutputType, IntSize desiredBounds, ScriptValue successCallback, ScriptValue errorCallback, float quality,
AspectRatioOption
, OrientationOption);
100
AspectRatioOption
m_aspectRatioOption;
AsyncImageResizer.cpp
43
PassRefPtr<AsyncImageResizer> AsyncImageResizer::create(CachedImage* cachedImage, OutputType outputType, IntSize desiredBounds, ScriptValue successCallback, ScriptValue errorCallback, float quality,
AspectRatioOption
aspectRatioOption
, OrientationOption orientationOption)
45
return adoptRef(new AsyncImageResizer(cachedImage, outputType, desiredBounds, successCallback, errorCallback, quality,
aspectRatioOption
, orientationOption));
48
AsyncImageResizer::AsyncImageResizer(CachedImage* cachedImage, OutputType outputType, IntSize desiredBounds, ScriptValue successCallback, ScriptValue errorCallback, float quality,
AspectRatioOption
aspectRatioOption
, OrientationOption orientationOption)
55
, m_aspectRatioOption(
aspectRatioOption
)
ImageResizerThread.cpp
53
bool ImageResizerThread::start(PassRefPtr<SharedBuffer> imageData, AsyncImageResizer::CallbackInfo* callbackInfo, AsyncImageResizer::OutputType outputType, IntSize desiredBounds, float quality, AsyncImageResizer::
AspectRatioOption
aspectRatioOption
, AsyncImageResizer::OrientationOption orientationOption)
55
ImageResizerThread* imageResizerThread = new ImageResizerThread(callbackInfo, outputType, desiredBounds, quality,
aspectRatioOption
, orientationOption);
65
ImageResizerThread::ImageResizerThread(AsyncImageResizer::CallbackInfo* callbackInfo, AsyncImageResizer::OutputType outputType, IntSize desiredBounds, float quality, AsyncImageResizer::
AspectRatioOption
aspectRatioOption
, AsyncImageResizer::OrientationOption orientationOption)
71
, m_aspectRatioOption(
aspectRatioOption
)
Completed in 59 milliseconds