| OLD | NEW |
| 1 /** | 1 /** |
| 2 * A client-side key-value store with support for indexes. | 2 * A client-side key-value store with support for indexes. |
| 3 * | 3 * |
| 4 * Many browsers support IndexedDB—a web standard for | 4 * Many browsers support IndexedDB—a web standard for |
| 5 * an indexed database. | 5 * an indexed database. |
| 6 * By storing data on the client in an IndexedDB, | 6 * By storing data on the client in an IndexedDB, |
| 7 * a web app gets some advantages, such as faster performance and persistence. | 7 * a web app gets some advantages, such as faster performance and persistence. |
| 8 * To find out which browsers support IndexedDB, | 8 * To find out which browsers support IndexedDB, |
| 9 * refer to [Can I Use?](http://caniuse.com/#feat=indexeddb) | 9 * refer to [Can I Use?](http://caniuse.com/#feat=indexeddb) |
| 10 * | 10 * |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 * [Use IndexedDB](http://www.dartlang.org/docs/tutorials/indexeddb/). | 68 * [Use IndexedDB](http://www.dartlang.org/docs/tutorials/indexeddb/). |
| 69 * | 69 * |
| 70 * [IndexedDB reference](http://docs.webplatform.org/wiki/apis/indexeddb) | 70 * [IndexedDB reference](http://docs.webplatform.org/wiki/apis/indexeddb) |
| 71 * provides wiki-style docs about indexedDB | 71 * provides wiki-style docs about indexedDB |
| 72 */ | 72 */ |
| 73 library dart.dom.indexed_db; | 73 library dart.dom.indexed_db; |
| 74 | 74 |
| 75 import 'dart:async'; | 75 import 'dart:async'; |
| 76 import 'dart:html'; | 76 import 'dart:html'; |
| 77 import 'dart:html_common'; | 77 import 'dart:html_common'; |
| 78 import 'dart:typed_data'; | 78 import 'dart:_native_typed_data'; |
| 79 import 'dart:_js_helper' show Creates, Returns, JSName, Null; | 79 import 'dart:_js_helper' show Creates, Returns, JSName, Null; |
| 80 import 'dart:_foreign_helper' show JS; | 80 import 'dart:_foreign_helper' show JS; |
| 81 import 'dart:_interceptors' show Interceptor, JSExtendableArray; | 81 import 'dart:_interceptors' show Interceptor, JSExtendableArray; |
| 82 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 82 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 83 // for details. All rights reserved. Use of this source code is governed by a | 83 // for details. All rights reserved. Use of this source code is governed by a |
| 84 // BSD-style license that can be found in the LICENSE file. | 84 // BSD-style license that can be found in the LICENSE file. |
| 85 | 85 |
| 86 // DO NOT EDIT - unless you are editing documentation as per: | 86 // DO NOT EDIT - unless you are editing documentation as per: |
| 87 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 87 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| 88 // Auto-generated dart:svg library. | 88 // Auto-generated dart:svg library. |
| (...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 // BSD-style license that can be found in the LICENSE file. | 1439 // BSD-style license that can be found in the LICENSE file. |
| 1440 | 1440 |
| 1441 | 1441 |
| 1442 @DocsEditable() | 1442 @DocsEditable() |
| 1443 @DomName('IDBAny') | 1443 @DomName('IDBAny') |
| 1444 @deprecated // nonstandard | 1444 @deprecated // nonstandard |
| 1445 abstract class _IDBAny extends Interceptor native "IDBAny" { | 1445 abstract class _IDBAny extends Interceptor native "IDBAny" { |
| 1446 // To suppress missing implicit constructor warnings. | 1446 // To suppress missing implicit constructor warnings. |
| 1447 factory _IDBAny._() { throw new UnsupportedError("Not supported"); } | 1447 factory _IDBAny._() { throw new UnsupportedError("Not supported"); } |
| 1448 } | 1448 } |
| OLD | NEW |