Index: third_party/WebKit/Source/core/fileapi/FileReader.idl |
diff --git a/third_party/WebKit/Source/core/fileapi/FileReader.idl b/third_party/WebKit/Source/core/fileapi/FileReader.idl |
index a0e8345bb30446a705887d298ce8219ed00d3104..f3bb0f1da86627f62a570f4dd04d83428cf704d3 100644 |
--- a/third_party/WebKit/Source/core/fileapi/FileReader.idl |
+++ b/third_party/WebKit/Source/core/fileapi/FileReader.idl |
@@ -40,7 +40,7 @@ |
] interface FileReader : EventTarget { |
// async read methods |
[RaisesException] void readAsArrayBuffer(Blob blob); |
- // TODO(philipj): readAsBinaryString() was removed from the spec in 2012: |
+ // TODO(foolip): readAsBinaryString() was removed from the spec in 2012: |
// https://github.com/w3c/FileAPI/commit/8cce54559dc27bf8b8244f3f0ca9fb3e4d96efdb |
[RaisesException, Measure] void readAsBinaryString(Blob blob); |
[RaisesException] void readAsText(Blob blob, optional DOMString label); |
@@ -58,7 +58,7 @@ |
// File or Blob data |
readonly attribute (DOMString or ArrayBuffer)? result; |
- // TODO(philipj): error should be DOMError. crbug.com/496901 |
+ // TODO(foolip): error should be DOMError. crbug.com/496901 |
[Measure] readonly attribute FileError? error; |
// event handler attributes |