| OLD | NEW |
| 1 library indexed_db; | 1 library indexed_db; |
| 2 | 2 |
| 3 import 'dart:html'; | 3 import 'dart:html'; |
| 4 import 'dart:html_common'; | 4 import 'dart:html_common'; |
| 5 import 'dart:nativewrappers'; | 5 import 'dart:nativewrappers'; |
| 6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7 // for details. All rights reserved. Use of this source code is governed by a | 7 // for details. All rights reserved. Use of this source code is governed by a |
| 8 // BSD-style license that can be found in the LICENSE file. | 8 // BSD-style license that can be found in the LICENSE file. |
| 9 | 9 |
| 10 // DO NOT EDIT | 10 // DO NOT EDIT |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 } | 106 } |
| 107 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 107 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 108 // for details. All rights reserved. Use of this source code is governed by a | 108 // for details. All rights reserved. Use of this source code is governed by a |
| 109 // BSD-style license that can be found in the LICENSE file. | 109 // BSD-style license that can be found in the LICENSE file. |
| 110 | 110 |
| 111 // WARNING: Do not edit - generated code. | 111 // WARNING: Do not edit - generated code. |
| 112 | 112 |
| 113 | 113 |
| 114 /// @domName IDBDatabase | 114 /// @domName IDBDatabase |
| 115 @SupportedBrowser(SupportedBrowser.CHROME) |
| 116 @SupportedBrowser(SupportedBrowser.FIREFOX, '15') |
| 117 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 118 @Experimental() |
| 115 class Database extends EventTarget { | 119 class Database extends EventTarget { |
| 116 Database.internal() : super.internal(); | 120 Database.internal() : super.internal(); |
| 117 | 121 |
| 118 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 122 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 119 DatabaseEvents get on => | 123 DatabaseEvents get on => |
| 120 new DatabaseEvents(this); | 124 new DatabaseEvents(this); |
| 121 | 125 |
| 122 | 126 |
| 123 /** @domName IDBDatabase.name */ | 127 /** @domName IDBDatabase.name */ |
| 124 String get name native "IDBDatabase_name_Getter"; | 128 String get name native "IDBDatabase_name_Getter"; |
| (...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 // BSD-style license that can be found in the LICENSE file. | 956 // BSD-style license that can be found in the LICENSE file. |
| 953 | 957 |
| 954 // WARNING: Do not edit - generated code. | 958 // WARNING: Do not edit - generated code. |
| 955 | 959 |
| 956 | 960 |
| 957 /// @domName IDBAny | 961 /// @domName IDBAny |
| 958 class _Any extends NativeFieldWrapperClass1 { | 962 class _Any extends NativeFieldWrapperClass1 { |
| 959 _Any.internal(); | 963 _Any.internal(); |
| 960 | 964 |
| 961 } | 965 } |
| OLD | NEW |