| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 @DomName('IDBFactory._open_1') | 270 @DomName('IDBFactory._open_1') |
| 271 @DocsEditable | 271 @DocsEditable |
| 272 OpenDBRequest _open_1(name, version) native "IDBFactory__open_1_Callback"; | 272 OpenDBRequest _open_1(name, version) native "IDBFactory__open_1_Callback"; |
| 273 | 273 |
| 274 @DomName('IDBFactory._open_2') | 274 @DomName('IDBFactory._open_2') |
| 275 @DocsEditable | 275 @DocsEditable |
| 276 OpenDBRequest _open_2(name) native "IDBFactory__open_2_Callback"; | 276 OpenDBRequest _open_2(name) native "IDBFactory__open_2_Callback"; |
| 277 | 277 |
| 278 @DomName('IDBFactory.webkitGetDatabaseNames') | 278 @DomName('IDBFactory.webkitGetDatabaseNames') |
| 279 @DocsEditable | 279 @DocsEditable |
| 280 Request webkitGetDatabaseNames() native "IDBFactory_webkitGetDatabaseNames_Cal
lback"; | 280 @SupportedBrowser(SupportedBrowser.CHROME) |
| 281 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 282 @Experimental |
| 283 Request getDatabaseNames() native "IDBFactory_webkitGetDatabaseNames_Callback"
; |
| 281 | 284 |
| 282 } | 285 } |
| 283 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 286 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 284 // for details. All rights reserved. Use of this source code is governed by a | 287 // for details. All rights reserved. Use of this source code is governed by a |
| 285 // BSD-style license that can be found in the LICENSE file. | 288 // BSD-style license that can be found in the LICENSE file. |
| 286 | 289 |
| 287 // WARNING: Do not edit - generated code. | 290 // WARNING: Do not edit - generated code. |
| 288 | 291 |
| 289 | 292 |
| 290 @DocsEditable | 293 @DocsEditable |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 @DomName('IDBRequest.source') | 837 @DomName('IDBRequest.source') |
| 835 @DocsEditable | 838 @DocsEditable |
| 836 dynamic get source native "IDBRequest_source_Getter"; | 839 dynamic get source native "IDBRequest_source_Getter"; |
| 837 | 840 |
| 838 @DomName('IDBRequest.transaction') | 841 @DomName('IDBRequest.transaction') |
| 839 @DocsEditable | 842 @DocsEditable |
| 840 Transaction get transaction native "IDBRequest_transaction_Getter"; | 843 Transaction get transaction native "IDBRequest_transaction_Getter"; |
| 841 | 844 |
| 842 @DomName('IDBRequest.webkitErrorMessage') | 845 @DomName('IDBRequest.webkitErrorMessage') |
| 843 @DocsEditable | 846 @DocsEditable |
| 844 String get webkitErrorMessage native "IDBRequest_webkitErrorMessage_Getter"; | 847 @SupportedBrowser(SupportedBrowser.CHROME) |
| 848 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 849 @Experimental |
| 850 String get errorMessage native "IDBRequest_webkitErrorMessage_Getter"; |
| 845 | 851 |
| 846 @DomName('IDBRequest.addEventListener') | 852 @DomName('IDBRequest.addEventListener') |
| 847 @DocsEditable | 853 @DocsEditable |
| 848 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu
re]) native "IDBRequest_addEventListener_Callback"; | 854 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu
re]) native "IDBRequest_addEventListener_Callback"; |
| 849 | 855 |
| 850 @DomName('IDBRequest.dispatchEvent') | 856 @DomName('IDBRequest.dispatchEvent') |
| 851 @DocsEditable | 857 @DocsEditable |
| 852 bool dispatchEvent(Event evt) native "IDBRequest_dispatchEvent_Callback"; | 858 bool dispatchEvent(Event evt) native "IDBRequest_dispatchEvent_Callback"; |
| 853 | 859 |
| 854 @DomName('IDBRequest.removeEventListener') | 860 @DomName('IDBRequest.removeEventListener') |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 @DomName('IDBTransaction.error') | 920 @DomName('IDBTransaction.error') |
| 915 @DocsEditable | 921 @DocsEditable |
| 916 DomError get error native "IDBTransaction_error_Getter"; | 922 DomError get error native "IDBTransaction_error_Getter"; |
| 917 | 923 |
| 918 @DomName('IDBTransaction.mode') | 924 @DomName('IDBTransaction.mode') |
| 919 @DocsEditable | 925 @DocsEditable |
| 920 String get mode native "IDBTransaction_mode_Getter"; | 926 String get mode native "IDBTransaction_mode_Getter"; |
| 921 | 927 |
| 922 @DomName('IDBTransaction.webkitErrorMessage') | 928 @DomName('IDBTransaction.webkitErrorMessage') |
| 923 @DocsEditable | 929 @DocsEditable |
| 924 String get webkitErrorMessage native "IDBTransaction_webkitErrorMessage_Getter
"; | 930 @SupportedBrowser(SupportedBrowser.CHROME) |
| 931 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 932 @Experimental |
| 933 String get errorMessage native "IDBTransaction_webkitErrorMessage_Getter"; |
| 925 | 934 |
| 926 @DomName('IDBTransaction.abort') | 935 @DomName('IDBTransaction.abort') |
| 927 @DocsEditable | 936 @DocsEditable |
| 928 void abort() native "IDBTransaction_abort_Callback"; | 937 void abort() native "IDBTransaction_abort_Callback"; |
| 929 | 938 |
| 930 @DomName('IDBTransaction.addEventListener') | 939 @DomName('IDBTransaction.addEventListener') |
| 931 @DocsEditable | 940 @DocsEditable |
| 932 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu
re]) native "IDBTransaction_addEventListener_Callback"; | 941 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu
re]) native "IDBTransaction_addEventListener_Callback"; |
| 933 | 942 |
| 934 @DomName('IDBTransaction.dispatchEvent') | 943 @DomName('IDBTransaction.dispatchEvent') |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 | 1008 |
| 1000 // WARNING: Do not edit - generated code. | 1009 // WARNING: Do not edit - generated code. |
| 1001 | 1010 |
| 1002 | 1011 |
| 1003 @DocsEditable | 1012 @DocsEditable |
| 1004 @DomName('IDBAny') | 1013 @DomName('IDBAny') |
| 1005 class _IDBAny extends NativeFieldWrapperClass1 { | 1014 class _IDBAny extends NativeFieldWrapperClass1 { |
| 1006 _IDBAny.internal(); | 1015 _IDBAny.internal(); |
| 1007 | 1016 |
| 1008 } | 1017 } |
| OLD | NEW |