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

Unified Diff: modules/imagebitmap/ImageBitmapFactories.idl

Issue 37053003: Roll IDL to multivm@1467 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 2 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
« no previous file with comments | « modules/geolocation/NavigatorGeolocation.idl ('k') | modules/imagebitmap/WindowImageBitmapFactories.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/imagebitmap/ImageBitmapFactories.idl
diff --git a/modules/imagebitmap/ImageBitmapFactories.idl b/modules/imagebitmap/ImageBitmapFactories.idl
index 042b6e485cd84a2aa6bd9aa705c953f09312b051..90cacf0acc3441098473bd301a03d45d588593c5 100644
--- a/modules/imagebitmap/ImageBitmapFactories.idl
+++ b/modules/imagebitmap/ImageBitmapFactories.idl
@@ -28,17 +28,14 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// FIXME: |PromiseValue| should be replaced with |Promise|. http://crbug.com/266700
-typedef any PromiseValue;
-
[
NoInterfaceObject,
- EnabledAtRuntime=experimentalCanvasFeatures
+ EnabledAtRuntime=ExperimentalCanvasFeatures
] interface ImageBitmapFactories {
- [RaisesException] PromiseValue createImageBitmap(Blob blob);
- [RaisesException] PromiseValue createImageBitmap(Blob blob, long sx, long sy, long sw, long sh);
- [RaisesException] PromiseValue createImageBitmap(ImageData data);
- [RaisesException] PromiseValue createImageBitmap(ImageData data, long sx, long sy, long sw, long sh);
- [RaisesException] PromiseValue createImageBitmap(ImageBitmap bitmap);
- [RaisesException] PromiseValue createImageBitmap(ImageBitmap bitmap, long sx, long sy, long sw, long sh);
+ [RaisesException] Promise createImageBitmap(Blob blob);
+ [RaisesException] Promise createImageBitmap(Blob blob, long sx, long sy, long sw, long sh);
+ [RaisesException] Promise createImageBitmap(ImageData data);
+ [RaisesException] Promise createImageBitmap(ImageData data, long sx, long sy, long sw, long sh);
+ [RaisesException] Promise createImageBitmap(ImageBitmap bitmap);
+ [RaisesException] Promise createImageBitmap(ImageBitmap bitmap, long sx, long sy, long sw, long sh);
};
« no previous file with comments | « modules/geolocation/NavigatorGeolocation.idl ('k') | modules/imagebitmap/WindowImageBitmapFactories.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698