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

Unified Diff: tools/dom/scripts/htmlrenamer.py

Issue 27240004: Making all callbacks use zones (take 2) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/src/EventStreamProvider.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/src/EventStreamProvider.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698