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

Unified Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.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/xmlhttprequest/XMLHttpRequest.idl
diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.idl b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.idl
index 9fe557c1ce47cc6d6cf9cc1963d26afa462550bd..3ac91dbcfdffe7c89d2715888a8f63a74c3062d9 100644
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.idl
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.idl
@@ -38,7 +38,7 @@ enum XMLHttpRequestResponseType {
"legacystream",
};
-// TODO(philipj): Most DOMString types in the XMLHttpRequest interface should be
+// TODO(foolip): Most DOMString types in the XMLHttpRequest interface should be
// either ByteString or USVString.
[
ActiveScriptWrappable,
@@ -65,7 +65,7 @@ enum XMLHttpRequestResponseType {
[RaisesException=Setter] attribute unsigned long timeout;
[RaisesException=Setter] attribute boolean withCredentials;
readonly attribute XMLHttpRequestUpload upload;
- // TODO(philipj): The data argument should be of type
+ // TODO(foolip): The data argument should be of type
// (Document or BodyInit)?
[RaisesException] void send(optional (ArrayBuffer or ArrayBufferView or Blob or Document or DOMString or FormData)? body = null);
void abort();
@@ -80,6 +80,6 @@ enum XMLHttpRequestResponseType {
[RaisesException=Setter] attribute XMLHttpRequestResponseType responseType;
[Custom=Getter, RaisesException=Getter] readonly attribute any response;
[Custom=Getter, RaisesException=Getter] readonly attribute DOMString responseText;
- // TODO(philipj): responseXML should be [Exposed=Window].
+ // TODO(foolip): responseXML should be [Exposed=Window].
[RaisesException=Getter] readonly attribute Document? responseXML;
};

Powered by Google App Engine
This is Rietveld 408576698