| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index a8c79c6589a9b07f7c56a78cdafcdf4f6af4a305..8749dabf88ace09530d567994f8907598954b51c 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -39144,6 +39144,16 @@ interface Window extends EventTarget {
|
|
|
| IDBFactory get indexedDB();
|
|
|
| + /**
|
| + * Creates a new object URL for the specified object. The URL will be
|
| + * available until revokeObjectUrl is called.
|
| + * [object] can be a Blob, MediaStream or MediaSource.
|
| + */
|
| + String createObjectUrl(object);
|
| +
|
| + /** @domName DOMURL.revokeObjectURL */
|
| + void revokeObjectUrl(String objectUrl);
|
| +
|
|
|
| /**
|
| * @domName EventTarget.addEventListener, EventTarget.removeEventListener, EventTarget.dispatchEvent
|
|
|