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