| OLD | NEW |
| 1 #library('dart:dom_deprecated'); | 1 #library('dart:dom_deprecated'); |
| 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 7124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7135 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7135 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7136 // for details. All rights reserved. Use of this source code is governed by a | 7136 // for details. All rights reserved. Use of this source code is governed by a |
| 7137 // BSD-style license that can be found in the LICENSE file. | 7137 // BSD-style license that can be found in the LICENSE file. |
| 7138 | 7138 |
| 7139 // WARNING: Do not edit - generated code. | 7139 // WARNING: Do not edit - generated code. |
| 7140 | 7140 |
| 7141 interface SQLResultSetRowList { | 7141 interface SQLResultSetRowList { |
| 7142 | 7142 |
| 7143 final int length; | 7143 final int length; |
| 7144 | 7144 |
| 7145 Object item(int index); | 7145 Map item(int index); |
| 7146 } | 7146 } |
| 7147 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7147 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7148 // for details. All rights reserved. Use of this source code is governed by a | 7148 // for details. All rights reserved. Use of this source code is governed by a |
| 7149 // BSD-style license that can be found in the LICENSE file. | 7149 // BSD-style license that can be found in the LICENSE file. |
| 7150 | 7150 |
| 7151 // WARNING: Do not edit - generated code. | 7151 // WARNING: Do not edit - generated code. |
| 7152 | 7152 |
| 7153 typedef bool SQLStatementCallback(SQLTransaction transaction, SQLResultSet resul
tSet); | 7153 typedef bool SQLStatementCallback(SQLTransaction transaction, SQLResultSet resul
tSet); |
| 7154 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7154 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7155 // for details. All rights reserved. Use of this source code is governed by a | 7155 // for details. All rights reserved. Use of this source code is governed by a |
| (...skipping 5954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13111 // for details. All rights reserved. Use of this source code is governed by a | 13111 // for details. All rights reserved. Use of this source code is governed by a |
| 13112 // BSD-style license that can be found in the LICENSE file. | 13112 // BSD-style license that can be found in the LICENSE file. |
| 13113 | 13113 |
| 13114 Window get window() => _dummy(); | 13114 Window get window() => _dummy(); |
| 13115 | 13115 |
| 13116 // TODO(vsm): Remove when prefixes are supported. | 13116 // TODO(vsm): Remove when prefixes are supported. |
| 13117 Window get dom_window() => _dummy(); | 13117 Window get dom_window() => _dummy(); |
| 13118 | 13118 |
| 13119 Document get document() => _dummy(); | 13119 Document get document() => _dummy(); |
| OLD | NEW |