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

Unified Diff: Source/core/html/FormData.idl

Issue 1174973003: Measure usage of FormData.append(name, blob, filename) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/DOMFormData.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/FormData.idl
diff --git a/Source/core/html/FormData.idl b/Source/core/html/FormData.idl
index 01efe14eeb0c9630a23a7742f1b71cc23ad2d7e1..dccbd43de03f2eca2feeff50b9b4c2493fe2bac0 100644
--- a/Source/core/html/FormData.idl
+++ b/Source/core/html/FormData.idl
@@ -40,8 +40,8 @@ typedef (File or USVString) FormDataEntryValue;
ImplementedAs=DOMFormData,
] interface FormData {
// TODO(philipj): The value argument should be FormDataEntryValue and there
- // should be no optional filename argument.
- void append(USVString name, Blob value, optional USVString filename);
+ // should be no optional filename argument. crbug.com/498790
+ [CallWith=ExecutionContext] void append(USVString name, Blob value, optional USVString filename);
void append(USVString name, USVString value);
[RuntimeEnabled=FormDataNewMethods, ImplementedAs=deleteEntry] void delete(USVString name);
« no previous file with comments | « Source/core/html/DOMFormData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698