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

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

Issue 11888013: Adding support checks for FileSystem APIs and making APIs not webkit-specific. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing test. 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
Index: tools/dom/scripts/htmlrenamer.py
diff --git a/tools/dom/scripts/htmlrenamer.py b/tools/dom/scripts/htmlrenamer.py
index 22bd880817fdbc946154d0bee147fab967f83da6..287a4e40c327b66b5c361c581da21264e2cc13ca 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -153,6 +153,14 @@ _renamed_html_members = {
'SvgElement.className': '$dom_svgClassName',
'Url.createObjectURL': 'createObjectUrl',
'Url.revokeObjectURL': 'revokeObjectUrl',
+ 'Window.webkitRequestFileSystem': 'requestFileSystem',
+ 'Window.webkitResolveLocalFileSystemURL': 'resolveLocalFileSystemUrl',
+ 'WorkerContext.webkitRequestFileSystem': 'requestFileSystem',
+ 'WorkerContext.webkitRequestFileSystemSync': 'requestFileSystemSync',
+ 'WorkerContext.webkitResolveLocalFileSystemSyncURL':
+ 'resolveLocalFileSystemSyncUrl',
+ 'WorkerContext.webkitResolveLocalFileSystemURL':
+ 'resolveLocalFileSystemUrl',
}
# Members and classes from the dom that should be removed completely from

Powered by Google App Engine
This is Rietveld 408576698