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

Side by Side Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 11473004: Making FormData able to add Blobs and Files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/html/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 html; 1 library html;
2 2
3 import 'dart:collection'; 3 import 'dart:collection';
4 import 'dart:html_common'; 4 import 'dart:html_common';
5 import 'dart:indexed_db'; 5 import 'dart:indexed_db';
6 import 'dart:isolate'; 6 import 'dart:isolate';
7 import 'dart:json'; 7 import 'dart:json';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 import 'dart:svg' as svg; 9 import 'dart:svg' as svg;
10 import 'dart:web_audio' as web_audio; 10 import 'dart:web_audio' as web_audio;
(...skipping 10952 matching lines...) Expand 10 before | Expand all | Expand 10 after
10963 factory FormData([FormElement form]) { 10963 factory FormData([FormElement form]) {
10964 if (!?form) { 10964 if (!?form) {
10965 return _FormDataFactoryProvider.createFormData(); 10965 return _FormDataFactoryProvider.createFormData();
10966 } 10966 }
10967 return _FormDataFactoryProvider.createFormData(form); 10967 return _FormDataFactoryProvider.createFormData(form);
10968 } 10968 }
10969 FormData.internal(); 10969 FormData.internal();
10970 10970
10971 10971
10972 /** @domName DOMFormData.append */ 10972 /** @domName DOMFormData.append */
10973 void append(String name, String value, String filename) native "DOMFormData_ap pend_Callback"; 10973 void append(String name, value, [String filename]) native "DOMFormData_append_ Callback";
10974 10974
10975 } 10975 }
10976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10977 // for details. All rights reserved. Use of this source code is governed by a 10977 // for details. All rights reserved. Use of this source code is governed by a
10978 // BSD-style license that can be found in the LICENSE file. 10978 // BSD-style license that can be found in the LICENSE file.
10979 10979
10980 // WARNING: Do not edit - generated code. 10980 // WARNING: Do not edit - generated code.
10981 10981
10982 10982
10983 /// @domName HTMLFormElement 10983 /// @domName HTMLFormElement
(...skipping 18750 matching lines...) Expand 10 before | Expand all | Expand 10 after
29734 bool get isEmpty => Maps.isEmpty(this); 29734 bool get isEmpty => Maps.isEmpty(this);
29735 } 29735 }
29736 29736
29737 get _printClosure => (s) { 29737 get _printClosure => (s) {
29738 try { 29738 try {
29739 window.console.log(s); 29739 window.console.log(s);
29740 } catch (_) { 29740 } catch (_) {
29741 _Utils.print(s); 29741 _Utils.print(s);
29742 } 29742 }
29743 }; 29743 };
OLDNEW
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/html/idl/dart/dart.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698