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

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

Issue 10332038: FileList is a sequence - make it have indexer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 | « no previous file | lib/dom/frog/dom_frog.dart » ('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('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 2930 matching lines...) Expand 10 before | Expand all | Expand 10 after
2941 final String name; 2941 final String name;
2942 2942
2943 String toString(); 2943 String toString();
2944 } 2944 }
2945 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2945 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2946 // for details. All rights reserved. Use of this source code is governed by a 2946 // for details. All rights reserved. Use of this source code is governed by a
2947 // BSD-style license that can be found in the LICENSE file. 2947 // BSD-style license that can be found in the LICENSE file.
2948 2948
2949 // WARNING: Do not edit - generated code. 2949 // WARNING: Do not edit - generated code.
2950 2950
2951 interface FileList { 2951 interface FileList extends List<File> {
2952 2952
2953 final int length; 2953 final int length;
2954 2954
2955 File item(int index); 2955 File item(int index);
2956 } 2956 }
2957 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2957 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2958 // for details. All rights reserved. Use of this source code is governed by a 2958 // for details. All rights reserved. Use of this source code is governed by a
2959 // BSD-style license that can be found in the LICENSE file. 2959 // BSD-style license that can be found in the LICENSE file.
2960 2960
2961 // WARNING: Do not edit - generated code. 2961 // WARNING: Do not edit - generated code.
(...skipping 9950 matching lines...) Expand 10 before | Expand all | Expand 10 after
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();
OLDNEW
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698