Commit 9d95fc81 authored by xidachen's avatar xidachen Committed by Commit bot

Ship ImageBitmap.close()

BUG=605186

Review URL: https://codereview.chromium.org/1917193002

Cr-Commit-Position: refs/heads/master@{#389851}
parent 972c22ef
...@@ -379,6 +379,7 @@ interface IDBVersionChangeEvent : Event ...@@ -379,6 +379,7 @@ interface IDBVersionChangeEvent : Event
interface ImageBitmap interface ImageBitmap
getter height getter height
getter width getter width
method close
method constructor method constructor
interface ImageData interface ImageData
getter height getter height
......
...@@ -405,6 +405,7 @@ Starting worker: resources/global-interface-listing.js ...@@ -405,6 +405,7 @@ Starting worker: resources/global-interface-listing.js
[Worker] attribute @@toStringTag [Worker] attribute @@toStringTag
[Worker] getter height [Worker] getter height
[Worker] getter width [Worker] getter width
[Worker] method close
[Worker] method constructor [Worker] method constructor
[Worker] interface ImageData [Worker] interface ImageData
[Worker] attribute @@toStringTag [Worker] attribute @@toStringTag
......
...@@ -2952,6 +2952,7 @@ interface ImageBitmap ...@@ -2952,6 +2952,7 @@ interface ImageBitmap
attribute @@toStringTag attribute @@toStringTag
getter height getter height
getter width getter width
method close
method constructor method constructor
interface ImageData interface ImageData
attribute @@toStringTag attribute @@toStringTag
......
...@@ -392,6 +392,7 @@ Starting worker: resources/global-interface-listing.js ...@@ -392,6 +392,7 @@ Starting worker: resources/global-interface-listing.js
[Worker] attribute @@toStringTag [Worker] attribute @@toStringTag
[Worker] getter height [Worker] getter height
[Worker] getter width [Worker] getter width
[Worker] method close
[Worker] method constructor [Worker] method constructor
[Worker] interface ImageData [Worker] interface ImageData
[Worker] attribute @@toStringTag [Worker] attribute @@toStringTag
......
...@@ -9,5 +9,5 @@ ...@@ -9,5 +9,5 @@
] interface ImageBitmap { ] interface ImageBitmap {
readonly attribute unsigned long width; readonly attribute unsigned long width;
readonly attribute unsigned long height; readonly attribute unsigned long height;
[RuntimeEnabled=ExperimentalCanvasFeatures] void close(); void close();
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment