| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index a78d9d15bf8c6dea6c5c67c04994b482a92e0f63..ee56322cd867a90d4e16e33819345043abda28f4 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -39231,6 +39231,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
|
|
|