Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Unified Diff: third_party/WebKit/Source/core/html/ImageData.h

Issue 2035113002: Implement ImageBitmapOptions resize (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + clean up Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/ImageData.h
diff --git a/third_party/WebKit/Source/core/html/ImageData.h b/third_party/WebKit/Source/core/html/ImageData.h
index 71905d1f4883ef78cd6e314fb4288e30f4351aa2..2550442c57241f22b2cbce2c7fbb654a850de1bf 100644
--- a/third_party/WebKit/Source/core/html/ImageData.h
+++ b/third_party/WebKit/Source/core/html/ImageData.h
@@ -59,7 +59,7 @@ public:
// ImageBitmapSource implementation
IntSize bitmapSourceSize() const override { return m_size; }
- ScriptPromise createImageBitmap(ScriptState*, EventTarget&, int sx, int sy, int sw, int sh, const ImageBitmapOptions&, ExceptionState&) override;
+ ScriptPromise createImageBitmap(ScriptState*, EventTarget&, WTF::Optional<IntRect> cropRect, const ImageBitmapOptions&, ExceptionState&) override;
DEFINE_INLINE_TRACE()
{

Powered by Google App Engine
This is Rietveld 408576698