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

Unified Diff: sdk/lib/html/idl/dart/dart.idl

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tests/html/form_data_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/idl/dart/dart.idl
diff --git a/sdk/lib/html/idl/dart/dart.idl b/sdk/lib/html/idl/dart/dart.idl
index 1c974689d761c397f77bc806d664d92144eebdc3..74f7e9668c565f3e32d94337dcfa9eff70df8e87 100644
--- a/sdk/lib/html/idl/dart/dart.idl
+++ b/sdk/lib/html/idl/dart/dart.idl
@@ -311,6 +311,9 @@ module html {
// Provide missing constructor signature.
Constructor([Optional] in HTMLFormElement form)]
interface DOMFormData {
+ [Suppressed] void append(in DOMString name, in DOMString value, in DOMString filename);
+ [Custom] void append(in DOMString name, in DOMString value);
+ [Custom] void append(in DOMString name, in Blob value, [Optional] in DOMString filename);
};
}
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tests/html/form_data_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698