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

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

Issue 84643002: Update the metrics side bar pane and computed style pane after main frame resize. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Throttling the pane updates! Created 7 years 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
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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 }, 562 },
563 { 563 {
564 "name": "frameClearedScheduledNavigation", 564 "name": "frameClearedScheduledNavigation",
565 "description": "Fired when frame no longer has a scheduled navig ation.", 565 "description": "Fired when frame no longer has a scheduled navig ation.",
566 "parameters": [ 566 "parameters": [
567 { "name": "frameId", "$ref": "FrameId", "description": "Id o f the frame that has cleared its scheduled navigation." } 567 { "name": "frameId", "$ref": "FrameId", "description": "Id o f the frame that has cleared its scheduled navigation." }
568 ], 568 ],
569 "hidden": true 569 "hidden": true
570 }, 570 },
571 { 571 {
572 "name": "frameResized",
573 "hidden": true
574 },
575 {
572 "name": "javascriptDialogOpening", 576 "name": "javascriptDialogOpening",
573 "description": "Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) is about to open.", 577 "description": "Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) is about to open.",
574 "parameters": [ 578 "parameters": [
575 { "name": "message", "type": "string", "description": "Messa ge that will be displayed by the dialog." } 579 { "name": "message", "type": "string", "description": "Messa ge that will be displayed by the dialog." }
576 ], 580 ],
577 "hidden": true 581 "hidden": true
578 }, 582 },
579 { 583 {
580 "name": "javascriptDialogClosed", 584 "name": "javascriptDialogClosed",
581 "description": "Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) has been closed.", 585 "description": "Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) has been closed.",
(...skipping 3476 matching lines...) Expand 10 before | Expand all | Expand 10 after
4058 "parameters": [ 4062 "parameters": [
4059 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 4063 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
4060 ] 4064 ]
4061 }, 4065 },
4062 { 4066 {
4063 "name": "tracingComplete" 4067 "name": "tracingComplete"
4064 } 4068 }
4065 ] 4069 ]
4066 }] 4070 }]
4067 } 4071 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698