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

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

Issue 14232015: Regenerated to put SQL database back. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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_sql/dartium/web_sql_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 18a903627c26b0c2f6c2c5dcb422ea1c1055fb19..998cbeddb4a974eca0e19f28f32302ff8884cdc9 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -617,6 +617,7 @@ _removed_html_members = monitored.Set('htmlrenamer._removed_html_members', [
# Manual dart: library name lookup.
_library_names = monitored.Dict('htmlrenamer._library_names', {
'DOMWindow': 'html',
+ 'Database': 'web_sql',
'Navigator': 'html',
'WorkerContext': 'html',
})
@@ -704,6 +705,8 @@ class HtmlRenamer(object):
# so we can no longer determine the library based on the conditionals.
if interface.id.startswith("IDB"):
return 'indexed_db'
+ if interface.id.startswith("SQL"):
+ return 'web_sql'
if 'Conditional' in interface.ext_attrs:
if 'WEB_AUDIO' in interface.ext_attrs['Conditional']:
« no previous file with comments | « sdk/lib/web_sql/dartium/web_sql_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698