| Index: tools/dom/scripts/htmlrenamer.py
|
| diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
|
| index 85574eb506b994d99d9b2719c719bbeaff379838..6af90b43208afca867927aedd1ed1efff5c74587 100644
|
| --- a/tools/dom/scripts/htmlrenamer.py
|
| +++ b/tools/dom/scripts/htmlrenamer.py
|
| @@ -134,8 +134,6 @@ convert_to_future_members = monitored.Set(
|
| 'DirectoryEntry.getFile',
|
| 'DirectoryEntry.removeRecursively',
|
| 'DirectoryReader.readEntries',
|
| - 'Window.webkitRequestFileSystem',
|
| - 'Window.webkitResolveLocalFileSystemURL',
|
| 'Entry.copyTo',
|
| 'Entry.getMetadata',
|
| 'Entry.getParent',
|
| @@ -143,13 +141,18 @@ convert_to_future_members = monitored.Set(
|
| 'Entry.remove',
|
| 'FileEntry.createWriter',
|
| 'FileEntry.file',
|
| + 'FontLoader.notifyWhenFontsReady',
|
| + 'MediaStreamTrack.getSources',
|
| 'Notification.requestPermission',
|
| 'NotificationCenter.requestPermission',
|
| 'RTCPeerConnection.setLocalDescription',
|
| 'RTCPeerConnection.setRemoteDescription',
|
| 'StorageInfo.requestQuota',
|
| - 'WorkerGlobalScope.webkitResolveLocalFileSystemURL',
|
| + 'StorageQuota.requestQuota',
|
| + 'Window.webkitRequestFileSystem',
|
| + 'Window.webkitResolveLocalFileSystemURL',
|
| 'WorkerGlobalScope.webkitRequestFileSystem',
|
| + 'WorkerGlobalScope.webkitResolveLocalFileSystemURL',
|
| ])
|
|
|
| # "Private" members in the form $dom_foo.
|
| @@ -166,6 +169,7 @@ dom_private_html_members = monitored.Set('htmlrenamer.private_html_members', [
|
| custom_html_constructors = monitored.Set(
|
| 'htmlrenamer.custom_html_constructors', [
|
| 'HTMLOptionElement',
|
| + 'MutationObserver',
|
| ])
|
|
|
| # Members from the standard dom that should not be exposed publicly in dart:html
|
| @@ -290,6 +294,7 @@ private_html_members = monitored.Set('htmlrenamer.private_html_members', [
|
| 'ParentNode.lastElementChild',
|
| 'RTCPeerConnection.createAnswer',
|
| 'RTCPeerConnection.createOffer',
|
| + 'RTCPeerConnection.getStats',
|
| 'Screen.availHeight',
|
| 'Screen.availLeft',
|
| 'Screen.availTop',
|
| @@ -323,11 +328,12 @@ private_html_members = monitored.Set('htmlrenamer.private_html_members', [
|
| 'WheelEvent.deltaY',
|
| 'Window.createImageBitmap',
|
| 'Window.getComputedStyle',
|
| - 'Window.moveTo',
|
| - 'Window.clearTimeout',
|
| 'Window.clearInterval',
|
| - 'Window.setTimeout',
|
| + 'Window.clearTimeout',
|
| + 'Window.moveTo',
|
| + 'Window.requestAnimationFrame',
|
| 'Window.setInterval',
|
| + 'Window.setTimeout',
|
| ])
|
|
|
| # Members from the standard dom that exist in the dart:html library with
|
|
|