| OLD | NEW |
| 1 /** | 1 /** |
| 2 * An API for storing data in the browser that can be queried with SQL. | 2 * An API for storing data in the browser that can be queried with SQL. |
| 3 * | 3 * |
| 4 * **Caution:** this specification is no longer actively maintained by the Web | 4 * **Caution:** this specification is no longer actively maintained by the Web |
| 5 * Applications Working Group and may be removed at any time. | 5 * Applications Working Group and may be removed at any time. |
| 6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase
/) | 6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase
/) |
| 7 * for more information. | 7 * for more information. |
| 8 * | 8 * |
| 9 * The [dart:indexed_db] APIs is a recommended alternatives. | 9 * The [dart:indexed_db] APIs is a recommended alternatives. |
| 10 */ | 10 */ |
| 11 library dart.dom.web_sql; | 11 library dart.dom.web_sql; |
| 12 | 12 |
| 13 import 'dart:async'; | 13 import 'dart:async'; |
| 14 import 'dart:collection'; | 14 import 'dart:collection'; |
| 15 import 'dart:_collection-dev' hide deprecated; | 15 import 'dart:_internal' hide deprecated; |
| 16 import 'dart:html'; | 16 import 'dart:html'; |
| 17 import 'dart:html_common'; | 17 import 'dart:html_common'; |
| 18 import 'dart:nativewrappers'; | 18 import 'dart:nativewrappers'; |
| 19 // DO NOT EDIT - unless you are editing documentation as per: | 19 // DO NOT EDIT - unless you are editing documentation as per: |
| 20 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 20 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| 21 // Auto-generated dart:audio library. | 21 // Auto-generated dart:audio library. |
| 22 | 22 |
| 23 | 23 |
| 24 | 24 |
| 25 | 25 |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 @SupportedBrowser(SupportedBrowser.CHROME) | 305 @SupportedBrowser(SupportedBrowser.CHROME) |
| 306 @SupportedBrowser(SupportedBrowser.SAFARI) | 306 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 307 @Experimental() | 307 @Experimental() |
| 308 // http://www.w3.org/TR/webdatabase/#sqltransactionsync | 308 // http://www.w3.org/TR/webdatabase/#sqltransactionsync |
| 309 @Experimental() // deprecated | 309 @Experimental() // deprecated |
| 310 abstract class _SQLTransactionSync extends NativeFieldWrapperClass2 { | 310 abstract class _SQLTransactionSync extends NativeFieldWrapperClass2 { |
| 311 // To suppress missing implicit constructor warnings. | 311 // To suppress missing implicit constructor warnings. |
| 312 factory _SQLTransactionSync._() { throw new UnsupportedError("Not supported");
} | 312 factory _SQLTransactionSync._() { throw new UnsupportedError("Not supported");
} |
| 313 | 313 |
| 314 } | 314 } |
| OLD | NEW |