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

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

Issue 338253007: Revert "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,
301 "description": "Returns content of the given resource.", 300 "description": "Returns content of the given resource.",
302 "parameters": [ 301 "parameters": [
303 { "name": "frameId", "$ref": "FrameId", "description": "Fram e id to get resource for." }, 302 { "name": "frameId", "$ref": "FrameId", "description": "Fram e id to get resource for." },
304 { "name": "url", "type": "string", "description": "URL of th e resource to get content for." } 303 { "name": "url", "type": "string", "description": "URL of th e resource to get content for." }
305 ], 304 ],
306 "returns": [ 305 "returns": [
307 { "name": "content", "type": "string", "description": "Resou rce content." }, 306 { "name": "content", "type": "string", "description": "Resou rce content." },
308 { "name": "base64Encoded", "type": "boolean", "description": "True, if content was served as base64." } 307 { "name": "base64Encoded", "type": "boolean", "description": "True, if content was served as base64." }
309 ], 308 ],
310 "hidden": true 309 "hidden": true
(...skipping 3882 matching lines...) Expand 10 before | Expand all | Expand 10 after
4193 { 4192 {
4194 "name": "dataAvailable", 4193 "name": "dataAvailable",
4195 "parameters": [ 4194 "parameters": [
4196 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4195 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4197 ], 4196 ],
4198 "handlers": ["browser", "frontend"] 4197 "handlers": ["browser", "frontend"]
4199 } 4198 }
4200 ] 4199 ]
4201 }] 4200 }]
4202 } 4201 }
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