OLD | NEW |
| (Empty) |
1 | |
2 // DO NOT EDIT - unless you are editing documentation as per: | |
3 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | |
4 // Auto-generated dart:audio library. | |
5 | |
6 /** | |
7 * An API for storing data in the browser that can be queried with SQL. | |
8 * | |
9 * **Caution:** this specification is no longer actively maintained by the Web | |
10 * Applications Working Group and may be removed at any time. | |
11 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase
/) | |
12 * for more information. | |
13 * | |
14 * The [dart:indexed_db] APIs is a recommended alternatives. | |
15 */ | |
16 library dart.dom.web_sql; | |
17 | |
18 import 'dart:async'; | |
19 import 'dart:collection'; | |
20 import 'dart:_internal'; | |
21 import 'dart:html'; | |
22 import 'dart:html_common'; | |
23 import 'dart:nativewrappers'; | |
24 import 'dart:_blink' as _blink; | |
25 import 'dart:js' as js; | |
26 | |
27 $!GENERATED_DART_FILES | |
28 // FIXME: Can we make this private? | |
29 @Deprecated("Internal Use Only") | |
30 final web_sqlBlinkMap = { | |
31 $!TYPE_MAP | |
32 }; | |
OLD | NEW |