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

Unified Diff: third_party/WebKit/Source/core/timing/PerformanceResourceTiming.idl

Issue 2105713002: Render process changes for ResourceTiming sizes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@resource_timing_sizes_browser_process
Patch Set: Created 4 years, 6 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/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..ffd02a85a40e83124250af0c089835d662afc374 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;
+ [RuntimeEnabled=ResourceTimingSizes] readonly attribute unsigned short transferSize;
+ [RuntimeEnabled=ResourceTimingSizes] readonly attribute unsigned short encodedBodySize;
+ [RuntimeEnabled=ResourceTimingSizes] readonly attribute unsigned short decodedBodySize;
kinuko 2016/06/28 15:35:07 We sent out I2S so basically we don't need to make
Adam Rice 2016/06/29 09:52:15 I misunderstood that part of the launch process. I
+ // TODO(foolip): The spec has a serializer:
// serializer = {inherit, attribute};
};

Powered by Google App Engine
This is Rietveld 408576698