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

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

Issue 2872023006: web_audio: rename OfflineAudioContext.suspend (Closed)
Patch Set: Created 3 years, 7 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/web_audio/dartium/web_audio_dartium.dart ('k') | no next file » | 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 8c57360621b4e0a165541894aaf666a302c2e1bd..b9b75eaeb9d4cd842d796815e98b76130d0c8fa2 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -432,29 +432,25 @@ private_html_members = monitored.Set('htmlrenamer.private_html_members', [
# Members from the standard dom that exist in the dart:html library with
# identical functionality but with cleaner names.
renamed_html_members = monitored.Dict('htmlrenamer.renamed_html_members', {
- 'ConsoleBase.assert': 'assertCondition',
- 'CSSKeyframesRule.insertRule': 'appendRule',
- 'DirectoryEntry.getDirectory': '_getDirectory',
- 'DirectoryEntry.getFile': '_getFile',
- 'Document.createCDATASection': 'createCDataSection',
- 'Document.defaultView': 'window',
- 'Window.CSS': 'css',
+ 'ConsoleBase.assert': 'assertCondition', 'CSSKeyframesRule.insertRule':
+ 'appendRule', 'DirectoryEntry.getDirectory': '_getDirectory',
+ 'DirectoryEntry.getFile': '_getFile', 'Document.createCDATASection':
+ 'createCDataSection', 'Document.defaultView': 'window', 'Window.CSS': 'css',
'Window.webkitNotifications': 'notifications',
'Window.webkitRequestFileSystem': '_requestFileSystem',
'Window.webkitResolveLocalFileSystemURL': 'resolveLocalFileSystemUrl',
- 'Navigator.webkitGetUserMedia': '_getUserMedia',
- 'Node.appendChild': 'append',
- 'Node.cloneNode': 'clone',
- 'Node.nextSibling': 'nextNode',
- 'Node.parentElement': 'parent',
- 'Node.previousSibling': 'previousNode',
- 'Node.textContent': 'text',
- 'SVGElement.className': '_svgClassName',
- 'SVGStopElement.offset': 'gradientOffset',
- 'URL.createObjectURL': 'createObjectUrl',
- 'URL.revokeObjectURL': 'revokeObjectUrl',
+ 'Navigator.webkitGetUserMedia': '_getUserMedia', 'Node.appendChild':
+ 'append', 'Node.cloneNode': 'clone', 'Node.nextSibling': 'nextNode',
+ 'Node.parentElement': 'parent', 'Node.previousSibling': 'previousNode',
+ 'Node.textContent': 'text', 'SVGElement.className': '_svgClassName',
+ 'SVGStopElement.offset': 'gradientOffset', 'URL.createObjectURL':
+ 'createObjectUrl', 'URL.revokeObjectURL': 'revokeObjectUrl',
#'WorkerContext.webkitRequestFileSystem': '_requestFileSystem',
#'WorkerContext.webkitRequestFileSystemSync': '_requestFileSystemSync',
+
+ # OfflineAudioContext.suspend has an signature incompatible with shadowed
+ # base class method AudioContext.suspend.
+ 'OfflineAudioContext.suspend': 'suspendFor',
})
# Members that have multiple definitions, but their types are vary, so we rename
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698