Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 12180023: "Reverting 18090" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 @SupportedBrowser(SupportedBrowser.CHROME) 280 Request webkitGetDatabaseNames() native "IDBFactory_webkitGetDatabaseNames_Cal lback";
281 @SupportedBrowser(SupportedBrowser.SAFARI)
282 @Experimental
283 Request getDatabaseNames() native "IDBFactory_webkitGetDatabaseNames_Callback" ;
284 281
285 } 282 }
286 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 283 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
287 // for details. All rights reserved. Use of this source code is governed by a 284 // for details. All rights reserved. Use of this source code is governed by a
288 // BSD-style license that can be found in the LICENSE file. 285 // BSD-style license that can be found in the LICENSE file.
289 286
290 // WARNING: Do not edit - generated code. 287 // WARNING: Do not edit - generated code.
291 288
292 289
293 @DocsEditable 290 @DocsEditable
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 @DomName('IDBRequest.source') 834 @DomName('IDBRequest.source')
838 @DocsEditable 835 @DocsEditable
839 dynamic get source native "IDBRequest_source_Getter"; 836 dynamic get source native "IDBRequest_source_Getter";
840 837
841 @DomName('IDBRequest.transaction') 838 @DomName('IDBRequest.transaction')
842 @DocsEditable 839 @DocsEditable
843 Transaction get transaction native "IDBRequest_transaction_Getter"; 840 Transaction get transaction native "IDBRequest_transaction_Getter";
844 841
845 @DomName('IDBRequest.webkitErrorMessage') 842 @DomName('IDBRequest.webkitErrorMessage')
846 @DocsEditable 843 @DocsEditable
847 @SupportedBrowser(SupportedBrowser.CHROME) 844 String get webkitErrorMessage native "IDBRequest_webkitErrorMessage_Getter";
848 @SupportedBrowser(SupportedBrowser.SAFARI)
849 @Experimental
850 String get errorMessage native "IDBRequest_webkitErrorMessage_Getter";
851 845
852 @DomName('IDBRequest.addEventListener') 846 @DomName('IDBRequest.addEventListener')
853 @DocsEditable 847 @DocsEditable
854 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu re]) native "IDBRequest_addEventListener_Callback"; 848 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu re]) native "IDBRequest_addEventListener_Callback";
855 849
856 @DomName('IDBRequest.dispatchEvent') 850 @DomName('IDBRequest.dispatchEvent')
857 @DocsEditable 851 @DocsEditable
858 bool dispatchEvent(Event evt) native "IDBRequest_dispatchEvent_Callback"; 852 bool dispatchEvent(Event evt) native "IDBRequest_dispatchEvent_Callback";
859 853
860 @DomName('IDBRequest.removeEventListener') 854 @DomName('IDBRequest.removeEventListener')
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 @DomName('IDBTransaction.error') 914 @DomName('IDBTransaction.error')
921 @DocsEditable 915 @DocsEditable
922 DomError get error native "IDBTransaction_error_Getter"; 916 DomError get error native "IDBTransaction_error_Getter";
923 917
924 @DomName('IDBTransaction.mode') 918 @DomName('IDBTransaction.mode')
925 @DocsEditable 919 @DocsEditable
926 String get mode native "IDBTransaction_mode_Getter"; 920 String get mode native "IDBTransaction_mode_Getter";
927 921
928 @DomName('IDBTransaction.webkitErrorMessage') 922 @DomName('IDBTransaction.webkitErrorMessage')
929 @DocsEditable 923 @DocsEditable
930 @SupportedBrowser(SupportedBrowser.CHROME) 924 String get webkitErrorMessage native "IDBTransaction_webkitErrorMessage_Getter ";
931 @SupportedBrowser(SupportedBrowser.SAFARI)
932 @Experimental
933 String get errorMessage native "IDBTransaction_webkitErrorMessage_Getter";
934 925
935 @DomName('IDBTransaction.abort') 926 @DomName('IDBTransaction.abort')
936 @DocsEditable 927 @DocsEditable
937 void abort() native "IDBTransaction_abort_Callback"; 928 void abort() native "IDBTransaction_abort_Callback";
938 929
939 @DomName('IDBTransaction.addEventListener') 930 @DomName('IDBTransaction.addEventListener')
940 @DocsEditable 931 @DocsEditable
941 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu re]) native "IDBTransaction_addEventListener_Callback"; 932 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu re]) native "IDBTransaction_addEventListener_Callback";
942 933
943 @DomName('IDBTransaction.dispatchEvent') 934 @DomName('IDBTransaction.dispatchEvent')
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 1053
1063 // WARNING: Do not edit - generated code. 1054 // WARNING: Do not edit - generated code.
1064 1055
1065 1056
1066 @DocsEditable 1057 @DocsEditable
1067 @DomName('IDBAny') 1058 @DomName('IDBAny')
1068 class _IDBAny extends NativeFieldWrapperClass1 { 1059 class _IDBAny extends NativeFieldWrapperClass1 {
1069 _IDBAny.internal(); 1060 _IDBAny.internal();
1070 1061
1071 } 1062 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698