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

Side by Side Diff: lib/dom/dom.dart

Issue 10877007: Map ObjectArray to List. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « lib/dom/dart2js/dom_dart2js.dart ('k') | lib/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_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 7147 matching lines...) Expand 10 before | Expand all | Expand 10 after
7158 // WARNING: Do not edit - generated code. 7158 // WARNING: Do not edit - generated code.
7159 7159
7160 typedef bool SQLStatementErrorCallback(SQLTransaction transaction, SQLError erro r); 7160 typedef bool SQLStatementErrorCallback(SQLTransaction transaction, SQLError erro r);
7161 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7161 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7162 // for details. All rights reserved. Use of this source code is governed by a 7162 // for details. All rights reserved. Use of this source code is governed by a
7163 // BSD-style license that can be found in the LICENSE file. 7163 // BSD-style license that can be found in the LICENSE file.
7164 7164
7165 // WARNING: Do not edit - generated code. 7165 // WARNING: Do not edit - generated code.
7166 7166
7167 interface SQLTransaction { 7167 interface SQLTransaction {
7168
7169 void executeSql(String sqlStatement, List arguments, [SQLStatementCallback cal lback, SQLStatementErrorCallback errorCallback]);
7168 } 7170 }
7169 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7171 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7170 // for details. All rights reserved. Use of this source code is governed by a 7172 // for details. All rights reserved. Use of this source code is governed by a
7171 // BSD-style license that can be found in the LICENSE file. 7173 // BSD-style license that can be found in the LICENSE file.
7172 7174
7173 // WARNING: Do not edit - generated code. 7175 // WARNING: Do not edit - generated code.
7174 7176
7175 typedef bool SQLTransactionCallback(SQLTransaction transaction); 7177 typedef bool SQLTransactionCallback(SQLTransaction transaction);
7176 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7178 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7177 // for details. All rights reserved. Use of this source code is governed by a 7179 // for details. All rights reserved. Use of this source code is governed by a
7178 // BSD-style license that can be found in the LICENSE file. 7180 // BSD-style license that can be found in the LICENSE file.
7179 7181
7180 // WARNING: Do not edit - generated code. 7182 // WARNING: Do not edit - generated code.
7181 7183
7182 typedef bool SQLTransactionErrorCallback(SQLError error); 7184 typedef bool SQLTransactionErrorCallback(SQLError error);
7183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7185 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7184 // for details. All rights reserved. Use of this source code is governed by a 7186 // for details. All rights reserved. Use of this source code is governed by a
7185 // BSD-style license that can be found in the LICENSE file. 7187 // BSD-style license that can be found in the LICENSE file.
7186 7188
7187 // WARNING: Do not edit - generated code. 7189 // WARNING: Do not edit - generated code.
7188 7190
7189 interface SQLTransactionSync { 7191 interface SQLTransactionSync {
7192
7193 SQLResultSet executeSql(String sqlStatement, List arguments);
7190 } 7194 }
7191 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7195 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7192 // for details. All rights reserved. Use of this source code is governed by a 7196 // for details. All rights reserved. Use of this source code is governed by a
7193 // BSD-style license that can be found in the LICENSE file. 7197 // BSD-style license that can be found in the LICENSE file.
7194 7198
7195 // WARNING: Do not edit - generated code. 7199 // WARNING: Do not edit - generated code.
7196 7200
7197 typedef bool SQLTransactionSyncCallback(SQLTransactionSync transaction); 7201 typedef bool SQLTransactionSyncCallback(SQLTransactionSync transaction);
7198 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7202 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7199 // for details. All rights reserved. Use of this source code is governed by a 7203 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 5906 matching lines...) Expand 10 before | Expand all | Expand 10 after
13106 // 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
13107 // 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
13108 // BSD-style license that can be found in the LICENSE file. 13112 // BSD-style license that can be found in the LICENSE file.
13109 13113
13110 Window get window() => _dummy(); 13114 Window get window() => _dummy();
13111 13115
13112 // TODO(vsm): Remove when prefixes are supported. 13116 // TODO(vsm): Remove when prefixes are supported.
13113 Window get dom_window() => _dummy(); 13117 Window get dom_window() => _dummy();
13114 13118
13115 Document get document() => _dummy(); 13119 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « lib/dom/dart2js/dom_dart2js.dart ('k') | lib/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698