| OLD | NEW |
| 1 library dart.dom.indexed_db; | 1 library dart.dom.indexed_db; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:html'; | 4 import 'dart:html'; |
| 5 import 'dart:html_common'; | 5 import 'dart:html_common'; |
| 6 import 'dart:nativewrappers'; | 6 import 'dart:nativewrappers'; |
| 7 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 8 // for details. All rights reserved. Use of this source code is governed by a | 8 // for details. All rights reserved. Use of this source code is governed by a |
| 9 // BSD-style license that can be found in the LICENSE file. | 9 // BSD-style license that can be found in the LICENSE file. |
| 10 | 10 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 @DocsEditable() | 112 @DocsEditable() |
| 113 Object get value native "IDBCursorWithValue_value_Getter"; | 113 Object get value native "IDBCursorWithValue_value_Getter"; |
| 114 | 114 |
| 115 } | 115 } |
| 116 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 116 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 117 // for details. All rights reserved. Use of this source code is governed by a | 117 // for details. All rights reserved. Use of this source code is governed by a |
| 118 // BSD-style license that can be found in the LICENSE file. | 118 // BSD-style license that can be found in the LICENSE file. |
| 119 | 119 |
| 120 | 120 |
| 121 @DocsEditable() | 121 @DocsEditable() |
| 122 /** |
| 123 * An indexed database object for storing client-side data |
| 124 * in web apps. |
| 125 */ |
| 122 @DomName('IDBDatabase') | 126 @DomName('IDBDatabase') |
| 123 @SupportedBrowser(SupportedBrowser.CHROME) | 127 @SupportedBrowser(SupportedBrowser.CHROME) |
| 124 @SupportedBrowser(SupportedBrowser.FIREFOX, '15') | 128 @SupportedBrowser(SupportedBrowser.FIREFOX, '15') |
| 125 @SupportedBrowser(SupportedBrowser.IE, '10') | 129 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 126 @Experimental() | 130 @Experimental() |
| 127 @Unstable() | 131 @Unstable() |
| 128 class Database extends EventTarget { | 132 class Database extends EventTarget { |
| 129 @DomName('IDBDatabase.createObjectStore') | 133 @DomName('IDBDatabase.createObjectStore') |
| 130 @DocsEditable() | 134 @DocsEditable() |
| 131 ObjectStore createObjectStore(String name, | 135 ObjectStore createObjectStore(String name, |
| (...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 | 1045 |
| 1042 // WARNING: Do not edit - generated code. | 1046 // WARNING: Do not edit - generated code. |
| 1043 | 1047 |
| 1044 | 1048 |
| 1045 @DocsEditable() | 1049 @DocsEditable() |
| 1046 @DomName('IDBAny') | 1050 @DomName('IDBAny') |
| 1047 @deprecated // nonstandard | 1051 @deprecated // nonstandard |
| 1048 abstract class _IDBAny extends NativeFieldWrapperClass1 { | 1052 abstract class _IDBAny extends NativeFieldWrapperClass1 { |
| 1049 | 1053 |
| 1050 } | 1054 } |
| OLD | NEW |