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

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

Issue 22352004: Regenerating DOM types from IDL roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | « tools/dom/scripts/htmleventgenerator.py ('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 8fffc04c3dea963887b6a42f3752623dcd2a45d7..ba3ecff46cf6ba0b600afc500ed383d55b2c85e0 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -71,7 +71,6 @@ _removed_html_interfaces = [
'DOMFileSystemSync', # Workers
'DatabaseSync', # Workers
'DataView', # Typed arrays
- 'DedicatedWorkerContext', # Workers
'DirectoryEntrySync', # Workers
'DirectoryReaderSync', # Workers
'EntrySync', # Workers
@@ -114,11 +113,9 @@ _removed_html_interfaces = [
'SVGTRefElement',
'SVGVKernElement',
'SharedWorker', # Workers
- 'SharedWorkerContext', # Workers
'WebKitMediaSource',
'WebKitSourceBuffer',
'WebKitSourceBufferList',
- 'WorkerContext', # Workers
'WorkerLocation', # Workers
'WorkerNavigator', # Workers
]
@@ -148,8 +145,8 @@ convert_to_future_members = monitored.Set(
'RTCPeerConnection.setLocalDescription',
'RTCPeerConnection.setRemoteDescription',
'StorageInfo.requestQuota',
- 'WorkerContext.webkitResolveLocalFileSystemURL',
- 'WorkerContext.webkitRequestFileSystem',
+ 'WorkerGlobalScope.webkitResolveLocalFileSystemURL',
+ 'WorkerGlobalScope.webkitRequestFileSystem',
])
# Members from the standard dom that should not be exposed publicly in dart:html
@@ -329,7 +326,6 @@ renamed_html_members = monitored.Dict('htmlrenamer.renamed_html_members', {
'Window.webkitRequestFileSystem': '_requestFileSystem',
'Window.webkitResolveLocalFileSystemURL': 'resolveLocalFileSystemUrl',
'Element.querySelector': 'query',
- 'Element.webkitCreateShadowRoot': 'createShadowRoot',
'Element.webkitMatchesSelector' : 'matches',
'MutationObserver.observe': '_observe',
'Navigator.webkitGetUserMedia': '_getUserMedia',
@@ -380,7 +376,7 @@ renamed_overloads = monitored.Dict('htmldartgenreator.renamed_overloads', {
'RTCDataChannel.send(ArrayBufferView data)': 'sendTypedData',
'RTCDataChannel.send(Blob data)': 'sendBlob',
'RTCDataChannel.send(DOMString data)': 'sendString',
- 'SourceBuffer.appendBuffer(ArrayBufferView view)': 'appendBufferView',
+ 'SourceBuffer.appendBuffer(ArrayBufferView data)': 'appendBufferView',
'URL.createObjectURL(MediaSource source)':
'createObjectUrlFromSource',
'URL.createObjectURL(WebKitMediaSource source)':
@@ -506,12 +502,10 @@ removed_html_members = monitored.Set('htmlrenamer.removed_html_members', [
'Document.get:documentURI',
'Document.get:embeds',
'Document.get:forms',
- 'Document.get:height',
'Document.get:inputEncoding',
'Document.get:links',
'Document.get:plugins',
'Document.get:scripts',
- 'Document.get:width',
'Document.get:xmlEncoding',
'Document.getElementsByTagNameNS',
'Document.getOverrideStyle',
@@ -716,7 +710,6 @@ removed_html_members = monitored.Set('htmlrenamer.removed_html_members', [
'ShadowRoot.getElementsByTagNameNS',
'SVGStyledElement.getPresentationAttribute',
'WheelEvent.wheelDelta',
- 'WorkerContext.webkitIndexedDB',
# TODO(jacobr): should these be removed?
'Document.close',
'Document.hasFocus',
@@ -728,7 +721,6 @@ _library_names = monitored.Dict('htmlrenamer._library_names', {
'Database': 'web_sql',
'Navigator': 'html',
'Window': 'html',
- 'WorkerContext': 'html',
})
class HtmlRenamer(object):
« no previous file with comments | « tools/dom/scripts/htmleventgenerator.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698