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

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

Issue 299803003: Add isPausedWorker command to Runtime and use it to auto attach DevTools to ServiceWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/devtools/front_end/main/Main.js ('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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 "description": "Tells inspected instance(worker or page) that it can run in case it was started paused." 815 "description": "Tells inspected instance(worker or page) that it can run in case it was started paused."
816 }, 816 },
817 { 817 {
818 "name": "enable", 818 "name": "enable",
819 "description": "Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context. " 819 "description": "Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context. "
820 }, 820 },
821 { 821 {
822 "name": "disable", 822 "name": "disable",
823 "hidden": true, 823 "hidden": true,
824 "description": "Disables reporting of execution contexts creatio n." 824 "description": "Disables reporting of execution contexts creatio n."
825 },
826 {
827 "name": "isPausedWorker",
yurys 2014/05/23 09:09:14 Let's rename this into isRunRequired to avoid conf
horo 2014/05/23 10:03:21 Done.
828 "returns": [
829 { "name": "result", "type": "boolean", "description": "True if the Runtime is paused worker." }
830 ],
831 "hidden": true
825 } 832 }
826 ], 833 ],
827 "events": [ 834 "events": [
828 { 835 {
829 "name": "executionContextCreated", 836 "name": "executionContextCreated",
830 "parameters": [ 837 "parameters": [
831 { "name": "context", "$ref": "ExecutionContextDescription", "description": "A newly created execution contex." } 838 { "name": "context", "$ref": "ExecutionContextDescription", "description": "A newly created execution contex." }
832 ], 839 ],
833 "description": "Issued when new execution context is created." 840 "description": "Issued when new execution context is created."
834 }, 841 },
(...skipping 3295 matching lines...) Expand 10 before | Expand all | Expand 10 after
4130 { 4137 {
4131 "name": "dataAvailable", 4138 "name": "dataAvailable",
4132 "parameters": [ 4139 "parameters": [
4133 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4140 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4134 ], 4141 ],
4135 "handlers": ["browser", "frontend"] 4142 "handlers": ["browser", "frontend"]
4136 } 4143 }
4137 ] 4144 ]
4138 }] 4145 }]
4139 } 4146 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/main/Main.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698