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

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

Issue 2015503002: Move TODO(philipj) to TODO(foolip) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
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 90a995e708aba86dcda2536f6f271ebd8b836d36..271db17b98ab8080589daab2b64e7ecdad18dd52 100644
--- a/third_party/WebKit/Source/core/html/FormData.idl
+++ b/third_party/WebKit/Source/core/html/FormData.idl
@@ -30,7 +30,7 @@
// https://xhr.spec.whatwg.org/#interface-formdata
-// TODO(philipj): The FormDataEntryValue typedef should use Blob, not File.
+// TODO(foolip): The FormDataEntryValue typedef should use Blob, not File.
typedef (File or USVString) FormDataEntryValue;
[
@@ -38,7 +38,7 @@ typedef (File or USVString) FormDataEntryValue;
Exposed=(Window,Worker),
LegacyInterfaceTypeChecking,
] interface FormData {
- // TODO(philipj): The value argument should be FormDataEntryValue and there
+ // TODO(foolip): The value argument should be FormDataEntryValue and there
// 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);
@@ -47,7 +47,7 @@ typedef (File or USVString) FormDataEntryValue;
[RuntimeEnabled=FormDataNewMethods] FormDataEntryValue? get(USVString name);
[RuntimeEnabled=FormDataNewMethods] sequence<FormDataEntryValue> getAll(USVString name);
[RuntimeEnabled=FormDataNewMethods] boolean has(USVString name);
- // TODO(philipj): The value argument should be FormDataEntryValue and there
+ // 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);
« no previous file with comments | « third_party/WebKit/Source/core/frame/Navigator.idl ('k') | third_party/WebKit/Source/core/html/HTMLBodyElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698