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

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

Issue 10887016: Reapply DOMFormData => FormData rename. (this time with a fix for Dartium) (Closed) Base URL: http://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/idl/dart/dart.idl » ('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
11 11
12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
13 // for details. All rights reserved. Use of this source code is governed by a 13 // for details. All rights reserved. Use of this source code is governed by a
14 // BSD-style license that can be found in the LICENSE file. 14 // BSD-style license that can be found in the LICENSE file.
15 15
16 class _ArrayBufferFactoryProvider { 16 class _ArrayBufferFactoryProvider {
17 factory ArrayBuffer(int length) => _dummy(); 17 factory ArrayBuffer(int length) => _dummy();
18 } 18 }
19 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 19 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
20 // for details. All rights reserved. Use of this source code is governed by a 20 // for details. All rights reserved. Use of this source code is governed by a
21 // BSD-style license that can be found in the LICENSE file. 21 // BSD-style license that can be found in the LICENSE file.
22 22
23 class _BlobFactoryProvider { 23 class _BlobFactoryProvider {
24 factory Blob(List blobParts, [String type, String endings]) => _dummy(); 24 factory Blob(List blobParts, [String type, String endings]) => _dummy();
25 } 25 }
26 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 26 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
27 // for details. All rights reserved. Use of this source code is governed by a 27 // for details. All rights reserved. Use of this source code is governed by a
28 // BSD-style license that can be found in the LICENSE file. 28 // BSD-style license that can be found in the LICENSE file.
29 29
30 class _DOMFormDataFactoryProvider {
31 factory DOMFormData([FormElement form]) => _dummy();
32 }
33 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
34 // for details. All rights reserved. Use of this source code is governed by a
35 // BSD-style license that can be found in the LICENSE file.
36
30 class _DOMParserFactoryProvider { 37 class _DOMParserFactoryProvider {
31 factory DOMParser() => _dummy(); 38 factory DOMParser() => _dummy();
32 } 39 }
33 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 40 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
34 // for details. All rights reserved. Use of this source code is governed by a 41 // for details. All rights reserved. Use of this source code is governed by a
35 // BSD-style license that can be found in the LICENSE file. 42 // BSD-style license that can be found in the LICENSE file.
36 43
37 class _DOMURLFactoryProvider { 44 class _DOMURLFactoryProvider {
38 factory DOMURL() => _dummy(); 45 factory DOMURL() => _dummy();
39 } 46 }
(...skipping 1485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1525 final String name; 1532 final String name;
1526 1533
1527 final DirectoryEntrySync root; 1534 final DirectoryEntrySync root;
1528 } 1535 }
1529 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1536 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1530 // for details. All rights reserved. Use of this source code is governed by a 1537 // for details. All rights reserved. Use of this source code is governed by a
1531 // BSD-style license that can be found in the LICENSE file. 1538 // BSD-style license that can be found in the LICENSE file.
1532 1539
1533 // WARNING: Do not edit - generated code. 1540 // WARNING: Do not edit - generated code.
1534 1541
1535 interface FormData { 1542 interface FormData default _FormDataFactoryProvider {
1543
1544 FormData([FormElement form]);
1536 1545
1537 void append(String name, String value, String filename); 1546 void append(String name, String value, String filename);
1538 } 1547 }
1539 1548
1540 interface DOMFormData extends FormData { 1549 interface DOMFormData extends FormData {
1541 } 1550 }
1542 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1551 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1543 // for details. All rights reserved. Use of this source code is governed by a 1552 // for details. All rights reserved. Use of this source code is governed by a
1544 // BSD-style license that can be found in the LICENSE file. 1553 // BSD-style license that can be found in the LICENSE file.
1545 1554
(...skipping 11564 matching lines...) Expand 10 before | Expand all | Expand 10 after
13110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 13119 // 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 13120 // 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. 13121 // BSD-style license that can be found in the LICENSE file.
13113 13122
13114 Window get window() => _dummy(); 13123 Window get window() => _dummy();
13115 13124
13116 // TODO(vsm): Remove when prefixes are supported. 13125 // TODO(vsm): Remove when prefixes are supported.
13117 Window get dom_window() => _dummy(); 13126 Window get dom_window() => _dummy();
13118 13127
13119 Document get document() => _dummy(); 13128 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « lib/dom/dart2js/dom_dart2js.dart ('k') | lib/dom/idl/dart/dart.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698