Chromium Code Reviews| Index: third_party/WebKit/Source/core/timing/PerformanceResourceTiming.idl |
| diff --git a/third_party/WebKit/Source/core/timing/PerformanceResourceTiming.idl b/third_party/WebKit/Source/core/timing/PerformanceResourceTiming.idl |
| index 3dfd18eee3651c9f3de2664f534edea8c9473ed6..0940ee4d5116a121bea1462077f03594d33717c6 100644 |
| --- a/third_party/WebKit/Source/core/timing/PerformanceResourceTiming.idl |
| +++ b/third_party/WebKit/Source/core/timing/PerformanceResourceTiming.idl |
| @@ -46,10 +46,9 @@ interface PerformanceResourceTiming : PerformanceEntry { |
| readonly attribute DOMHighResTimeStamp requestStart; |
| readonly attribute DOMHighResTimeStamp responseStart; |
| readonly attribute DOMHighResTimeStamp responseEnd; |
| - // TODO(foolip): The spec has tranferSize/encodedBodySize/decodedBodySize |
| - // and a serializer: |
| - // readonly attribute unsigned short transferSize; |
| - // readonly attribute unsigned short encodedBodySize; |
| - // readonly attribute unsigned short decodedBodySize; |
| + readonly attribute unsigned short transferSize; |
|
Kunihiko Sakamoto
2016/06/30 10:19:49
The spec says these fields are unsigned long long.
Adam Rice
2016/06/30 10:29:58
Wow. I don't know how I managed to get that wrong.
|
| + readonly attribute unsigned short encodedBodySize; |
| + readonly attribute unsigned short decodedBodySize; |
| + // TODO(foolip): The spec has a serializer: |
| // serializer = {inherit, attribute}; |
| }; |