Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // DO NOT EDIT - unless you are editing documentation as per: | 1 // DO NOT EDIT - unless you are editing documentation as per: |
| 2 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 2 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| 3 // Auto-generated dart:audio library. | 3 // Auto-generated dart:audio library. |
| 4 | 4 |
| 5 /** | |
| 6 * An API for storing data in the browser that can be queried with SQL. | |
| 7 * | |
| 8 * **Caution:** this specification is no longer actively maintained by the Web | |
| 9 * 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 * for more information. | |
| 12 * | |
| 13 * The [dart:html.Storage] or [dart:indexed_db] APIs are recommended | |
|
blois
2013/02/26 20:55:12
I would just refer to indexed_db- storage is exper
| |
| 14 * alternatives. | |
| 15 */ | |
| 5 library dart.dom.web_sql; | 16 library dart.dom.web_sql; |
| 6 | 17 |
| 7 import 'dart:async'; | 18 import 'dart:async'; |
| 8 import 'dart:collection'; | 19 import 'dart:collection'; |
| 9 import 'dart:html'; | 20 import 'dart:html'; |
| 10 import 'dart:html_common'; | 21 import 'dart:html_common'; |
| 11 import 'dart:_js_helper' show convertDartClosureToJS, Creates, JavaScriptIndexin gBehavior, JSName; | 22 import 'dart:_js_helper' show convertDartClosureToJS, Creates, JavaScriptIndexin gBehavior, JSName; |
| 12 import 'dart:_foreign_helper' show JS; | 23 import 'dart:_foreign_helper' show JS; |
| 13 | 24 |
| 14 $!GENERATED_DART_FILES | 25 $!GENERATED_DART_FILES |
| OLD | NEW |