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

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

Issue 14014004: Use name to sort IDB interfaces into the indexed_db library. (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 | « no previous file | 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 1a9421f0954b7ec5ff37a338400513bc33793cfb..2604dd976750786ea9aac84b58abb3ecbd8e23d8 100644
--- a/tools/dom/scripts/htmlrenamer.py
+++ b/tools/dom/scripts/htmlrenamer.py
@@ -704,6 +704,11 @@ class HtmlRenamer(object):
if interface.id in _library_names:
return _library_names[interface.id]
+ # TODO(ager, blois): The conditional has been removed from indexed db,
+ # so we can no longer determine the library based on the conditionals.
+ if interface.id.startswith("IDB"):
blois 2013/04/10 15:45:13 Ugh. I imagine this is going to happen soon for ot
Mads Ager (google) 2013/04/10 16:10:04 Yes, I would expect that too. This one is easy bas
+ return 'indexed_db'
+
if 'Conditional' in interface.ext_attrs:
if 'WEB_AUDIO' in interface.ext_attrs['Conditional']:
return 'web_audio'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698