| Index: third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl
|
| diff --git a/third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl b/third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl
|
| index 68b9d2f1ac6b69ab1db8e1b00f9e21b246d59d0d..e83c42efdf161c6e7f1116f5d9d90b1f83ae1dba 100644
|
| --- a/third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl
|
| +++ b/third_party/WebKit/Source/core/imagebitmap/ImageBitmapOptions.idl
|
| @@ -7,8 +7,12 @@
|
| enum ImageOrientation { "none", "flipY" };
|
| enum PremultiplyAlpha { "none", "premultiply", "default" };
|
| enum ColorSpaceConversion { "none", "default" };
|
| +[RuntimeEnabled=ExperimentalCanvasFeatures] enum ResizeQuality { "pixelated", "low", "medium", "high" };
|
| dictionary ImageBitmapOptions {
|
| ImageOrientation imageOrientation = "none";
|
| PremultiplyAlpha premultiplyAlpha = "default";
|
| ColorSpaceConversion colorSpaceConversion = "default";
|
| + [RuntimeEnabled=ExperimentalCanvasFeatures, EnforceRange] unsigned long? resizeWidth;
|
| + [RuntimeEnabled=ExperimentalCanvasFeatures, EnforceRange] unsigned long? resizeHeight;
|
| + [RuntimeEnabled=ExperimentalCanvasFeatures] ResizeQuality resizeQuality = "low";
|
| };
|
|
|