OLD | NEW |
1 | |
2 // DO NOT EDIT - unless you are editing documentation as per: | 1 // DO NOT EDIT - unless you are editing documentation as per: |
3 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 2 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
4 // Auto-generated dart:audio library. | 3 // Auto-generated dart:audio library. |
5 | 4 |
6 /** | 5 /** |
7 * An API for storing data in the browser that can be queried with SQL. | 6 * An API for storing data in the browser that can be queried with SQL. |
8 * | 7 * |
9 * **Caution:** this specification is no longer actively maintained by the Web | 8 * **Caution:** this specification is no longer actively maintained by the Web |
10 * Applications Working Group and may be removed at any time. | 9 * Applications Working Group and may be removed at any time. |
11 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase
/) | 10 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase
/) |
12 * for more information. | 11 * for more information. |
13 * | 12 * |
14 * The [dart:indexed_db] APIs is a recommended alternatives. | 13 * The [dart:indexed_db] APIs is a recommended alternatives. |
15 */ | 14 */ |
16 library dart.dom.web_sql; | 15 library dart.dom.web_sql; |
17 | 16 |
18 import 'dart:async'; | 17 import 'dart:async'; |
19 import 'dart:collection'; | 18 import 'dart:collection'; |
20 import 'dart:_internal' hide deprecated; | 19 import 'dart:_internal' hide deprecated; |
21 import 'dart:html'; | 20 import 'dart:html'; |
22 import 'dart:html_common'; | 21 import 'dart:html_common'; |
23 import 'dart:nativewrappers'; | 22 import 'dart:nativewrappers'; |
24 import 'dart:_blink' as _blink; | 23 import 'dart:_blink' as _blink; |
25 import 'dart:js' as js; | |
26 | |
27 // Need a default constructor for constructing classes with mixins that are | |
28 // also extending NativeFieldWrapperClass2. Defining JsoNativeFieldWrapper | |
29 // extending NativeFieldWrapperClass2 creates a default constructor. | |
30 class JsoNativeFieldWrapper extends NativeFieldWrapperClass2 {} | |
31 | 24 |
32 $!GENERATED_DART_FILES | 25 $!GENERATED_DART_FILES |
33 // FIXME: Can we make this private? | 26 // FIXME: Can we make this private? |
34 final web_sqlBlinkMap = { | 27 final web_sqlBlinkMap = { |
35 $!TYPE_MAP | 28 $!TYPE_MAP |
36 }; | 29 }; |
37 | 30 |
38 $if JSINTEROP | 31 $if JSINTEROP |
39 // FIXME: Can we make this private? | 32 // FIXME: Can we make this private? |
40 final web_sqlBlinkFunctionMap = { | 33 final web_sqlBlinkFunctionMap = { |
41 $!TYPE_FUNCTION_MAP | 34 $!TYPE_FUNCTION_MAP |
42 }; | 35 }; |
43 $endif | 36 $endif |
OLD | NEW |