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); |