Index: third_party/WebKit/Source/core/inspector/browser_protocol.json |
diff --git a/third_party/WebKit/Source/core/inspector/browser_protocol.json b/third_party/WebKit/Source/core/inspector/browser_protocol.json |
index 3b72f45175224548fedb1c32c7e68d0ab097b7ca..f2e4365c0cf0a7771b98a07432a3dcf8851afbd2 100644 |
--- a/third_party/WebKit/Source/core/inspector/browser_protocol.json |
+++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json |
@@ -927,6 +927,12 @@ |
"description": "Request / response headers as keys / values of JSON object." |
}, |
{ |
+ "id": "ConnectionType", |
+ "type": "string", |
+ "enum": ["none", "cellular2g", "cellular3g", "cellular4g", "bluetooth", "ethernet", "wifi", "wimax", "other"], |
+ "description": "Loading priority of a resource request." |
+ }, |
+ { |
"id": "ResourceTiming", |
"type": "object", |
"description": "Timing information for the request.", |
@@ -1252,10 +1258,11 @@ |
{ "name": "offline", "type": "boolean", "description": "True to emulate internet disconnection." }, |
{ "name": "latency", "type": "number", "description": "Additional latency (ms)." }, |
{ "name": "downloadThroughput", "type": "number", "description": "Maximal aggregated download throughput." }, |
- { "name": "uploadThroughput", "type": "number", "description": "Maximal aggregated upload throughput." } |
+ { "name": "uploadThroughput", "type": "number", "description": "Maximal aggregated upload throughput." }, |
+ { "name": "connectionType", "$ref": "ConnectionType", "optional": true, "description": "Connection type if known."} |
], |
"hidden": true, |
- "handlers": ["browser"] |
+ "handlers": ["browser", "renderer"] |
}, |
{ |
"name": "setCacheDisabled", |