| 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 5076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5087 IDBObjectStore createObjectStore(String name, [Map options]); | 5087 IDBObjectStore createObjectStore(String name, [Map options]); |
| 5088 | 5088 |
| 5089 void deleteObjectStore(String name); | 5089 void deleteObjectStore(String name); |
| 5090 | 5090 |
| 5091 bool dispatchEvent(Event evt); | 5091 bool dispatchEvent(Event evt); |
| 5092 | 5092 |
| 5093 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 5093 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
| 5094 | 5094 |
| 5095 IDBVersionChangeRequest setVersion(String version); | 5095 IDBVersionChangeRequest setVersion(String version); |
| 5096 | 5096 |
| 5097 IDBTransaction transaction(storeName_OR_storeNames, [int mode]); | 5097 IDBTransaction transaction(storeName_OR_storeNames, int mode); |
| 5098 } | 5098 } |
| 5099 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5099 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 5100 // for details. All rights reserved. Use of this source code is governed by a | 5100 // for details. All rights reserved. Use of this source code is governed by a |
| 5101 // BSD-style license that can be found in the LICENSE file. | 5101 // BSD-style license that can be found in the LICENSE file. |
| 5102 | 5102 |
| 5103 // WARNING: Do not edit - generated code. | 5103 // WARNING: Do not edit - generated code. |
| 5104 | 5104 |
| 5105 interface IDBDatabaseException { | 5105 interface IDBDatabaseException { |
| 5106 | 5106 |
| 5107 static final int ABORT_ERR = 8; | 5107 static final int ABORT_ERR = 8; |
| (...skipping 7804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12913 // for details. All rights reserved. Use of this source code is governed by a | 12913 // for details. All rights reserved. Use of this source code is governed by a |
| 12914 // BSD-style license that can be found in the LICENSE file. | 12914 // BSD-style license that can be found in the LICENSE file. |
| 12915 | 12915 |
| 12916 Window get window() => _dummy(); | 12916 Window get window() => _dummy(); |
| 12917 | 12917 |
| 12918 // TODO(vsm): Remove when prefixes are supported. | 12918 // TODO(vsm): Remove when prefixes are supported. |
| 12919 Window get dom_window() => _dummy(); | 12919 Window get dom_window() => _dummy(); |
| 12920 | 12920 |
| 12921 Document get document() => _dummy(); | 12921 Document get document() => _dummy(); |
| OLD | NEW |