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

Unified Diff: Source/WebCore/xml/XMLHttpRequest.idl

Issue 13799007: Support for selective DOM activity logging, based on IDL attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed two superfluous in attributes in the IDL. Created 7 years, 8 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: Source/WebCore/xml/XMLHttpRequest.idl
diff --git a/Source/WebCore/xml/XMLHttpRequest.idl b/Source/WebCore/xml/XMLHttpRequest.idl
index 00113577f9cf6dd0cc11e8ca86755ca2ff9f63ae..2a3472ea5819ae60a23c7e82349a84efa3e1028a 100644
--- a/Source/WebCore/xml/XMLHttpRequest.idl
+++ b/Source/WebCore/xml/XMLHttpRequest.idl
@@ -68,9 +68,9 @@ enum XMLHttpRequestResponseType {
[SetterRaisesException] attribute boolean withCredentials;
- [Custom, RaisesException] void open(DOMString method, DOMString url, [Optional] boolean async, [Optional] DOMString user, [Optional] DOMString password);
+ [Custom, ActivityLog=Access, RaisesException] void open(DOMString method, DOMString url, [Optional] boolean async, [Optional] DOMString user, [Optional] DOMString password);
- [RaisesException] void setRequestHeader(DOMString header, DOMString value);
+ [ActivityLog=Access, RaisesException] void setRequestHeader(DOMString header, DOMString value);
[Custom, RaisesException] void send();

Powered by Google App Engine
This is Rietveld 408576698