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

Unified Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2928833002: [CacheStorage] [DevTools] Added "Time Received" column to cache storage data grid (Closed)
Patch Set: Created 3 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/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 311e871e3d1ef4016a393fb451c494a1db28c059..2e8899945d8579f855aaf6be4a9311346a731a3c 100644
--- a/third_party/WebKit/Source/core/inspector/browser_protocol.json
+++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json
@@ -1132,6 +1132,7 @@
"enum": ["Failed", "Aborted", "TimedOut", "AccessDenied", "ConnectionClosed", "ConnectionReset", "ConnectionRefused", "ConnectionAborted", "ConnectionFailed", "NameNotResolved", "InternetDisconnected", "AddressUnreachable"],
"description": "Network level fetch failure reason."
},
+
dgozman 2017/06/07 21:32:06 Why these empty lines?
kristipark 2017/06/07 22:42:37 Sorry, those were added accidentally while rebasin
{
"id": "Timestamp",
"type": "number",
@@ -1538,6 +1539,7 @@
],
"experimental": true
}
+
],
"events": [
{
@@ -1709,7 +1711,7 @@
{ "name": "redirectStatusCode", "type": "integer", "optional": true, "description": "HTTP response code, only sent if a redirect was intercepted." },
{ "name": "redirectUrl", "optional": true, "type": "string", "description": "Redirect location, only sent if a redirect was intercepted."}
],
- "experimental": true
+ "experimental": true
}
]
},
@@ -1951,7 +1953,8 @@
"description": "Data entry.",
"properties": [
{ "name": "request", "type": "string", "description": "Request url spec." },
- { "name": "response", "type": "string", "description": "Response stataus text." }
+ { "name": "response", "type": "string", "description": "Response status text." },
+ { "name": "responseTime", "type": "number", "description": "Time at which the response was received from the server. UTC internal time in microseconds." }
dgozman 2017/06/07 21:32:06 Let's send the same as Network.Timestamp here.
kristipark 2017/06/07 22:42:37 Done.
]
},
{

Powered by Google App Engine
This is Rietveld 408576698