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

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

Issue 23264011: Quota view in Resources pannel. Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 { 177 {
178 "id": "NavigationEntry", 178 "id": "NavigationEntry",
179 "type": "object", 179 "type": "object",
180 "description": "Navigation history entry.", 180 "description": "Navigation history entry.",
181 "properties": [ 181 "properties": [
182 { "name": "id", "type": "integer", "description": "Unique id o f the navigation history entry." }, 182 { "name": "id", "type": "integer", "description": "Unique id o f the navigation history entry." },
183 { "name": "url", "type": "string", "description": "URL of the navigation history entry." }, 183 { "name": "url", "type": "string", "description": "URL of the navigation history entry." },
184 { "name": "title", "type": "string", "description": "Title of the navigation history entry." } 184 { "name": "title", "type": "string", "description": "Title of the navigation history entry." }
185 ], 185 ],
186 "hidden": true 186 "hidden": true
187 },
188 {
189 "id": "Quota",
190 "type": "object",
191 "description": "Quota information",
192 "properties": [
193 { "name": "temporary", "type": "number", "description": "Quo ta for temporary storage shared among all security origins" },
194 { "name": "persistent", "type": "number", "description": "Qu ota for persistent storage for the security origin." }
195 ],
196 "hidden": true
197 },
198 {
199 "id": "Usage",
200 "type": "object",
201 "description": "Usage information",
202 "properties": [
203 { "name": "temporary", "type": "array", "items": { "$ref": " UsageItem" }, "description": "" },
204 { "name": "persistent", "type": "array", "items": { "$ref": "UsageItem" }, "description": "" },
205 { "name": "syncable", "type": "array", "items": { "$ref": "U sageItem" }, "description": "" }
206 ],
207 "hidden": true
208 },
209 {
210 "id": "UsageItem",
211 "type": "object",
212 "description": "Usage information for a client and storage type" ,
213 "properties": [
214 { "name": "id", "type": "string", "enum": ["filesystem", "da tabase", "appcache", "indexeddatabase"], "description": "" },
215 { "name": "value", "type": "number", "description": "" }
216 ],
217 "hidden": true
187 } 218 }
188 ], 219 ],
189 "commands": [ 220 "commands": [
190 { 221 {
191 "name": "enable", 222 "name": "enable",
192 "description": "Enables page domain notifications." 223 "description": "Enables page domain notifications."
193 }, 224 },
194 { 225 {
195 "name": "disable", 226 "name": "disable",
196 "description": "Disables page domain notifications." 227 "description": "Disables page domain notifications."
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 ], 511 ],
481 "hidden": true 512 "hidden": true
482 }, 513 },
483 { 514 {
484 "name": "setForceCompositingMode", 515 "name": "setForceCompositingMode",
485 "description": "Force accelerated compositing mode for inspected page.", 516 "description": "Force accelerated compositing mode for inspected page.",
486 "parameters": [ 517 "parameters": [
487 { "name": "force", "type": "boolean", "description": "Whethe r to force accelerated compositing or not." } 518 { "name": "force", "type": "boolean", "description": "Whethe r to force accelerated compositing or not." }
488 ], 519 ],
489 "hidden": true 520 "hidden": true
521 },
522 {
523 "name": "queryUsageAndQuota",
524 "description": ".",
525 "parameters": [
526 { "name": "securityOrigin", "type": "string", "description": "Securicy origin quota and usage requested for" }
527 ],
528 "returns": [
529 {
530 "name": "quota",
531 "$ref": "Quota"
532 },
533 {
534 "name": "usage",
535 "$ref": "Usage"
536 }
537 ],
538 "description": "Queries more detailed quota nad usage data than Storage API provides.",
539 "hidden": true
490 } 540 }
491 ], 541 ],
492 "events": [ 542 "events": [
493 { 543 {
494 "name": "domContentEventFired", 544 "name": "domContentEventFired",
495 "parameters": [ 545 "parameters": [
496 { "name": "timestamp", "type": "number" } 546 { "name": "timestamp", "type": "number" }
497 ] 547 ]
498 }, 548 },
499 { 549 {
(...skipping 3541 matching lines...) Expand 10 before | Expand all | Expand 10 after
4041 "parameters": [ 4091 "parameters": [
4042 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 4092 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
4043 ] 4093 ]
4044 }, 4094 },
4045 { 4095 {
4046 "name": "tracingComplete" 4096 "name": "tracingComplete"
4047 } 4097 }
4048 ] 4098 ]
4049 }] 4099 }]
4050 } 4100 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/resourcesPanel.css ('k') | Source/devtools/scripts/compile_frontend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698