summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.idl b/chromium/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.idl
index cd0f45b5ce8..a28d64bd448 100644
--- a/chromium/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.idl
+++ b/chromium/third_party/WebKit/Source/core/xml/XMLHttpRequestProgressEvent.idl
@@ -25,7 +25,7 @@
// We should also inherit from LSProgressEvent when the idl is added.
interface XMLHttpRequestProgressEvent : ProgressEvent {
- readonly attribute unsigned long long position;
- readonly attribute unsigned long long totalSize;
+ [MeasureAs=XHRProgressEventPosition] readonly attribute unsigned long long position;
+ [MeasureAs=XHRProgressEventTotalSize] readonly attribute unsigned long long totalSize;
};