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

Unified Diff: sdk/lib/html/scripts/systemhtml.py

Issue 11434079: Adding dart:indexed_db. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Syncing with latest. Created 8 years 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/html/scripts/htmlrenamer.py ('k') | sdk/lib/html/src/dart2js_Conversions.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/scripts/systemhtml.py
diff --git a/sdk/lib/html/scripts/systemhtml.py b/sdk/lib/html/scripts/systemhtml.py
index b83b2679f4c875a91f6be03aaca674f00aa431d2..2b470bb23b4be5c87879fbf3fadc30065e8106fc 100644
--- a/sdk/lib/html/scripts/systemhtml.py
+++ b/sdk/lib/html/scripts/systemhtml.py
@@ -42,6 +42,7 @@ _js_custom_members = set([
'Window.requestAnimationFrame',
'Window.webkitCancelAnimationFrame',
'Window.webkitRequestAnimationFrame',
+ 'WorkerContext.indexedDB',
])
@@ -203,6 +204,7 @@ _svg_element_constructors = {
_element_constructors = {
'html': _html_element_constructors,
+ 'indexed_db': {},
'svg': _svg_element_constructors,
'web_audio': {},
}
@@ -212,6 +214,10 @@ _factory_ctr_strings = {
'provider_name': 'document',
'constructor_name': '$dom_createElement'
},
+ 'indexed_db': {
+ 'provider_name': 'document',
+ 'constructor_name': '$dom_createElement'
+ },
'svg': {
'provider_name': '_SvgElementFactoryProvider',
'constructor_name': 'createSvgElement_tag',
« no previous file with comments | « sdk/lib/html/scripts/htmlrenamer.py ('k') | sdk/lib/html/src/dart2js_Conversions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698