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

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

Issue 11883025: Detect if webkitNotifications is available and remove webkit prefix (replaced (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/generator.py ('k') | tools/dom/scripts/systemhtml.py » ('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 6f029b26a3319b010885e251287aeaceac0f9269..0561c2777518e52d70f8109a27d5aefef10443c9 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -24,7 +24,6 @@ html_interface_renames = monitored.Dict('htmlrenamer.html_interface_renames', {
'SVGException': 'SvgException', # Manual of avoid conflict with Exception.
'SVGSVGElement': 'SvgSvgElement', # Manual to avoid name conflicts.
'WebGLVertexArrayObjectOES': 'WebGLVertexArrayObject',
- 'WebKitAnimation': 'Animation',
'WebKitAnimationEvent': 'AnimationEvent',
'WebKitCSSKeyframeRule': 'CssKeyframeRule',
'WebKitCSSKeyframesRule': 'CssKeyframesRule',
@@ -139,6 +138,9 @@ _private_html_members = monitored.Set('htmlrenamer._private_html_members', [
_renamed_html_members = monitored.Dict('htmlrenamer._renamed_html_members', {
'DOMURL.createObjectURL': 'createObjectUrl',
'DOMURL.revokeObjectURL': 'revokeObjectUrl',
+ 'DOMWindow.webkitNotifications': 'notifications',
+ 'DOMWindow.webkitRequestFileSystem': 'requestFileSystem',
+ 'DOMWindow.webkitResolveLocalFileSystemURL': 'resolveLocalFileSystemUrl',
'DOMWindow.webkitRequestFileSystem': 'requestFileSystem',
'DOMWindow.webkitResolveLocalFileSystemURL': 'resolveLocalFileSystemUrl',
'Document.createCDATASection': 'createCDataSection',
@@ -245,6 +247,32 @@ _removed_html_members = monitored.Set('htmlrenamer._removed_html_members', [
'Document.xmlStandalone',
'Document.xmlVersion',
'DocumentType.*',
+ 'DOMCoreException.code',
+ 'DOMCoreException.ABORT_ERR',
+ 'DOMCoreException.DATA_CLONE_ERR',
+ 'DOMCoreException.DOMSTRING_SIZE_ERR',
+ 'DOMCoreException.HIERARCHY_REQUEST_ERR',
+ 'DOMCoreException.INDEX_SIZE_ERR',
+ 'DOMCoreException.INUSE_ATTRIBUTE_ERR',
+ 'DOMCoreException.INVALID_ACCESS_ERR',
+ 'DOMCoreException.INVALID_CHARACTER_ERR',
+ 'DOMCoreException.INVALID_MODIFICATION_ERR',
+ 'DOMCoreException.INVALID_NODE_TYPE_ERR',
+ 'DOMCoreException.INVALID_STATE_ERR',
+ 'DOMCoreException.NAMESPACE_ERR',
+ 'DOMCoreException.NETWORK_ERR',
+ 'DOMCoreException.NOT_FOUND_ERR',
+ 'DOMCoreException.NOT_SUPPORTED_ERR',
+ 'DOMCoreException.NO_DATA_ALLOWED_ERR',
+ 'DOMCoreException.NO_MODIFICATION_ALLOWED_ERR',
+ 'DOMCoreException.QUOTA_EXCEEDED_ERR',
+ 'DOMCoreException.SECURITY_ERR',
+ 'DOMCoreException.SYNTAX_ERR',
+ 'DOMCoreException.TIMEOUT_ERR',
+ 'DOMCoreException.TYPE_MISMATCH_ERR',
+ 'DOMCoreException.URL_MISMATCH_ERR',
+ 'DOMCoreException.VALIDATION_ERR',
+ 'DOMCoreException.WRONG_DOCUMENT_ERR',
'Element.accessKey',
'Element.get:classList',
'Element.getAttributeNode',
« no previous file with comments | « tools/dom/scripts/generator.py ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698