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:_js_helper' show Creates, Returns, JSName, Null; | 6 import 'dart:_js_helper' show Creates, Returns, JSName, Null; |
7 import 'dart:_foreign_helper' show JS; | 7 import 'dart:_foreign_helper' show JS; |
8 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 8 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
9 // for details. All rights reserved. Use of this source code is governed by a | 9 // for details. All rights reserved. Use of this source code is governed by a |
10 // BSD-style license that can be found in the LICENSE file. | 10 // BSD-style license that can be found in the LICENSE file. |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 } | 203 } |
204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 204 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
205 // for details. All rights reserved. Use of this source code is governed by a | 205 // for details. All rights reserved. Use of this source code is governed by a |
206 // BSD-style license that can be found in the LICENSE file. | 206 // BSD-style license that can be found in the LICENSE file. |
207 | 207 |
208 | 208 |
209 @DocsEditable | 209 @DocsEditable |
210 @DomName('IDBCursorWithValue') | 210 @DomName('IDBCursorWithValue') |
211 class CursorWithValue extends Cursor native "*IDBCursorWithValue" { | 211 class CursorWithValue extends Cursor native "*IDBCursorWithValue" { |
212 | 212 |
213 dynamic get value => _convertNativeToDart_IDBAny(this._value); | 213 dynamic get value => _convertNativeToDart_IDBAny(this._get_value); |
214 @JSName('value') | 214 @JSName('value') |
215 @DomName('IDBCursorWithValue.value') | 215 @DomName('IDBCursorWithValue.value') |
216 @DocsEditable | 216 @DocsEditable |
217 @annotation_Creates_SerializedScriptValue | 217 @annotation_Creates_SerializedScriptValue |
218 @annotation_Returns_SerializedScriptValue | 218 @annotation_Returns_SerializedScriptValue |
219 final dynamic _value; | 219 final dynamic _get_value; |
220 } | 220 } |
221 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 221 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
222 // for details. All rights reserved. Use of this source code is governed by a | 222 // for details. All rights reserved. Use of this source code is governed by a |
223 // BSD-style license that can be found in the LICENSE file. | 223 // BSD-style license that can be found in the LICENSE file. |
224 | 224 |
225 | 225 |
226 @DocsEditable | 226 @DocsEditable |
227 @DomName('IDBDatabase') | 227 @DomName('IDBDatabase') |
228 @SupportedBrowser(SupportedBrowser.CHROME) | 228 @SupportedBrowser(SupportedBrowser.CHROME) |
229 @SupportedBrowser(SupportedBrowser.FIREFOX, '15') | 229 @SupportedBrowser(SupportedBrowser.FIREFOX, '15') |
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1065 static const EventStreamProvider<Event> successEvent = const EventStreamProvid
er<Event>('success'); | 1065 static const EventStreamProvider<Event> successEvent = const EventStreamProvid
er<Event>('success'); |
1066 | 1066 |
1067 @DomName('IDBRequest.error') | 1067 @DomName('IDBRequest.error') |
1068 @DocsEditable | 1068 @DocsEditable |
1069 final DomError error; | 1069 final DomError error; |
1070 | 1070 |
1071 @DomName('IDBRequest.readyState') | 1071 @DomName('IDBRequest.readyState') |
1072 @DocsEditable | 1072 @DocsEditable |
1073 final String readyState; | 1073 final String readyState; |
1074 | 1074 |
1075 dynamic get result => _convertNativeToDart_IDBAny(this._result); | 1075 dynamic get result => _convertNativeToDart_IDBAny(this._get_result); |
1076 @JSName('result') | 1076 @JSName('result') |
1077 @DomName('IDBRequest.result') | 1077 @DomName('IDBRequest.result') |
1078 @DocsEditable | 1078 @DocsEditable |
1079 @Creates('Null') | 1079 @Creates('Null') |
1080 final dynamic _result; | 1080 final dynamic _get_result; |
1081 | 1081 |
1082 @DomName('IDBRequest.source') | 1082 @DomName('IDBRequest.source') |
1083 @DocsEditable | 1083 @DocsEditable |
1084 @Creates('Null') | 1084 @Creates('Null') |
1085 final dynamic source; | 1085 final dynamic source; |
1086 | 1086 |
1087 @DomName('IDBRequest.transaction') | 1087 @DomName('IDBRequest.transaction') |
1088 @DocsEditable | 1088 @DocsEditable |
1089 final Transaction transaction; | 1089 final Transaction transaction; |
1090 | 1090 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1238 } | 1238 } |
1239 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1239 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1240 // for details. All rights reserved. Use of this source code is governed by a | 1240 // for details. All rights reserved. Use of this source code is governed by a |
1241 // BSD-style license that can be found in the LICENSE file. | 1241 // BSD-style license that can be found in the LICENSE file. |
1242 | 1242 |
1243 | 1243 |
1244 @DocsEditable | 1244 @DocsEditable |
1245 @DomName('IDBAny') | 1245 @DomName('IDBAny') |
1246 class _IDBAny native "*IDBAny" { | 1246 class _IDBAny native "*IDBAny" { |
1247 } | 1247 } |
OLD | NEW |