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

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

Issue 2156213002: Remove FormDataNewMethods runtime flag (status=stable) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/FormData.idl
diff --git a/third_party/WebKit/Source/core/html/FormData.idl b/third_party/WebKit/Source/core/html/FormData.idl
index 271db17b98ab8080589daab2b64e7ecdad18dd52..9dd68b7ca533ccdba36b69fc6a74e7a9e10eb605 100644
--- a/third_party/WebKit/Source/core/html/FormData.idl
+++ b/third_party/WebKit/Source/core/html/FormData.idl
@@ -43,13 +43,13 @@ typedef (File or USVString) FormDataEntryValue;
[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);
- [RuntimeEnabled=FormDataNewMethods] FormDataEntryValue? get(USVString name);
- [RuntimeEnabled=FormDataNewMethods] sequence<FormDataEntryValue> getAll(USVString name);
- [RuntimeEnabled=FormDataNewMethods] boolean has(USVString name);
+ [ImplementedAs=deleteEntry] void delete(USVString name);
+ FormDataEntryValue? get(USVString name);
+ sequence<FormDataEntryValue> getAll(USVString name);
+ boolean has(USVString name);
// TODO(foolip): The value argument should be FormDataEntryValue and there
// should be no optional filename argument.
- [RuntimeEnabled=FormDataNewMethods] void set(USVString name, Blob value, optional USVString filename);
- [RuntimeEnabled=FormDataNewMethods] void set(USVString name, USVString value);
- [RuntimeEnabled=FormDataNewMethods] iterable<USVString, FormDataEntryValue>;
+ void set(USVString name, Blob value, optional USVString filename);
+ void set(USVString name, USVString value);
+ iterable<USVString, FormDataEntryValue>;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698