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

Side by Side Diff: Source/devtools/protocol.json

Issue 267393003: DevTools: Load document (html) content from disk cache in page agent enabling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 { 290 {
291 "name": "getResourceTree", 291 "name": "getResourceTree",
292 "description": "Returns present frame / resource tree structure. ", 292 "description": "Returns present frame / resource tree structure. ",
293 "returns": [ 293 "returns": [
294 { "name": "frameTree", "$ref": "FrameResourceTree", "descrip tion": "Present frame / resource tree structure." } 294 { "name": "frameTree", "$ref": "FrameResourceTree", "descrip tion": "Present frame / resource tree structure." }
295 ], 295 ],
296 "hidden": true 296 "hidden": true
297 }, 297 },
298 { 298 {
299 "name": "getResourceContent", 299 "name": "getResourceContent",
300 "async": true,
300 "description": "Returns content of the given resource.", 301 "description": "Returns content of the given resource.",
301 "parameters": [ 302 "parameters": [
302 { "name": "frameId", "$ref": "FrameId", "description": "Fram e id to get resource for." }, 303 { "name": "frameId", "$ref": "FrameId", "description": "Fram e id to get resource for." },
303 { "name": "url", "type": "string", "description": "URL of th e resource to get content for." } 304 { "name": "url", "type": "string", "description": "URL of th e resource to get content for." }
304 ], 305 ],
305 "returns": [ 306 "returns": [
306 { "name": "content", "type": "string", "description": "Resou rce content." }, 307 { "name": "content", "type": "string", "description": "Resou rce content." },
307 { "name": "base64Encoded", "type": "boolean", "description": "True, if content was served as base64." } 308 { "name": "base64Encoded", "type": "boolean", "description": "True, if content was served as base64." }
308 ], 309 ],
309 "hidden": true 310 "hidden": true
(...skipping 3879 matching lines...) Expand 10 before | Expand all | Expand 10 after
4189 { 4190 {
4190 "name": "dataAvailable", 4191 "name": "dataAvailable",
4191 "parameters": [ 4192 "parameters": [
4192 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4193 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4193 ], 4194 ],
4194 "handlers": ["browser", "frontend"] 4195 "handlers": ["browser", "frontend"]
4195 } 4196 }
4196 ] 4197 ]
4197 }] 4198 }]
4198 } 4199 }
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698