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

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

Issue 488413002: Revert of [DevTools] Add interstitial events to Inspector domain. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | « no previous file | 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 27 matching lines...) Expand all
38 "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.", 38 "description": "Fired when remote debugging connection is about to be terminated. Contains detach reason.",
39 "parameters": [ 39 "parameters": [
40 { "name": "reason", "type": "string", "description": "The re ason why connection has been terminated." } 40 { "name": "reason", "type": "string", "description": "The re ason why connection has been terminated." }
41 ], 41 ],
42 "handlers": ["browser"] 42 "handlers": ["browser"]
43 }, 43 },
44 { 44 {
45 "name": "targetCrashed", 45 "name": "targetCrashed",
46 "description": "Fired when debugging target has crashed", 46 "description": "Fired when debugging target has crashed",
47 "handlers": ["browser"] 47 "handlers": ["browser"]
48 },
49 {
50 "name": "interstitialShown",
51 "description": "Fired when interstitial page was shown",
52 "handlers": ["browser"]
53 },
54 {
55 "name": "interstitialHidden",
56 "description": "Fired when interstitial page was hidden",
57 "handlers": ["browser"]
58 } 48 }
59 ] 49 ]
60 }, 50 },
61 { 51 {
62 "domain": "Memory", 52 "domain": "Memory",
63 "hidden": true, 53 "hidden": true,
64 "commands": [ 54 "commands": [
65 { 55 {
66 "name": "getDOMCounters", 56 "name": "getDOMCounters",
67 "returns": [ 57 "returns": [
(...skipping 4256 matching lines...) Expand 10 before | Expand all | Expand 10 after
4324 { 4314 {
4325 "name": "dataAvailable", 4315 "name": "dataAvailable",
4326 "parameters": [ 4316 "parameters": [
4327 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4317 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4328 ], 4318 ],
4329 "handlers": ["browser", "frontend"] 4319 "handlers": ["browser", "frontend"]
4330 } 4320 }
4331 ] 4321 ]
4332 }] 4322 }]
4333 } 4323 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698