| 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 */ |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 438 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 439 // for details. All rights reserved. Use of this source code is governed by a | 439 // for details. All rights reserved. Use of this source code is governed by a |
| 440 // BSD-style license that can be found in the LICENSE file. | 440 // BSD-style license that can be found in the LICENSE file. |
| 441 | 441 |
| 442 | 442 |
| 443 @DocsEditable | 443 @DocsEditable |
| 444 @DomName('DatabaseSync') | 444 @DomName('DatabaseSync') |
| 445 @SupportedBrowser(SupportedBrowser.CHROME) | 445 @SupportedBrowser(SupportedBrowser.CHROME) |
| 446 @SupportedBrowser(SupportedBrowser.SAFARI) | 446 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 447 @Experimental | 447 @Experimental |
| 448 class _DatabaseSync native "*DatabaseSync" { | 448 abstract class _DatabaseSync native "*DatabaseSync" { |
| 449 } | 449 } |
| 450 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 450 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 451 // for details. All rights reserved. Use of this source code is governed by a | 451 // for details. All rights reserved. Use of this source code is governed by a |
| 452 // BSD-style license that can be found in the LICENSE file. | 452 // BSD-style license that can be found in the LICENSE file. |
| 453 | 453 |
| 454 | 454 |
| 455 @DocsEditable | 455 @DocsEditable |
| 456 @DomName('SQLTransactionSync') | 456 @DomName('SQLTransactionSync') |
| 457 @SupportedBrowser(SupportedBrowser.CHROME) | 457 @SupportedBrowser(SupportedBrowser.CHROME) |
| 458 @SupportedBrowser(SupportedBrowser.SAFARI) | 458 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 459 @Experimental | 459 @Experimental |
| 460 class _SQLTransactionSync native "*SQLTransactionSync" { | 460 abstract class _SQLTransactionSync native "*SQLTransactionSync" { |
| 461 } | 461 } |
| OLD | NEW |