| OLD | NEW |
| 1 #library('dom'); | 1 #library('dom'); |
| 2 | 2 |
| 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 // DO NOT EDIT | 7 // DO NOT EDIT |
| 8 // Auto-generated Dart DOM library with no implementation. | 8 // Auto-generated Dart DOM library with no implementation. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 5108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5119 IDBObjectStore createObjectStore(String name, [Map options]); | 5119 IDBObjectStore createObjectStore(String name, [Map options]); |
| 5120 | 5120 |
| 5121 void deleteObjectStore(String name); | 5121 void deleteObjectStore(String name); |
| 5122 | 5122 |
| 5123 bool dispatchEvent(Event evt); | 5123 bool dispatchEvent(Event evt); |
| 5124 | 5124 |
| 5125 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 5125 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
| 5126 | 5126 |
| 5127 IDBVersionChangeRequest setVersion(String version); | 5127 IDBVersionChangeRequest setVersion(String version); |
| 5128 | 5128 |
| 5129 IDBTransaction transaction(storeName_OR_storeNames, mode); | 5129 IDBTransaction transaction(storeName_OR_storeNames, String mode); |
| 5130 } | 5130 } |
| 5131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5132 // for details. All rights reserved. Use of this source code is governed by a | 5132 // for details. All rights reserved. Use of this source code is governed by a |
| 5133 // BSD-style license that can be found in the LICENSE file. | 5133 // BSD-style license that can be found in the LICENSE file. |
| 5134 | 5134 |
| 5135 // WARNING: Do not edit - generated code. | 5135 // WARNING: Do not edit - generated code. |
| 5136 | 5136 |
| 5137 interface IDBDatabaseException { | 5137 interface IDBDatabaseException { |
| 5138 | 5138 |
| 5139 static final int ABORT_ERR = 20; | 5139 static final int ABORT_ERR = 20; |
| (...skipping 7837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12977 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12977 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12978 // for details. All rights reserved. Use of this source code is governed by a | 12978 // for details. All rights reserved. Use of this source code is governed by a |
| 12979 // BSD-style license that can be found in the LICENSE file. | 12979 // BSD-style license that can be found in the LICENSE file. |
| 12980 | 12980 |
| 12981 Window get window() => _dummy(); | 12981 Window get window() => _dummy(); |
| 12982 | 12982 |
| 12983 // TODO(vsm): Remove when prefixes are supported. | 12983 // TODO(vsm): Remove when prefixes are supported. |
| 12984 Window get dom_window() => _dummy(); | 12984 Window get dom_window() => _dummy(); |
| 12985 | 12985 |
| 12986 Document get document() => _dummy(); | 12986 Document get document() => _dummy(); |
| OLD | NEW |