Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "version": { "major": "1", "minor": "2" }, | 2 "version": { "major": "1", "minor": "2" }, |
| 3 "domains": [{ | 3 "domains": [{ |
| 4 "domain": "Inspector", | 4 "domain": "Inspector", |
| 5 "experimental": true, | 5 "experimental": 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 252 "name": "navigate", | 252 "name": "navigate", |
| 253 "parameters": [ | 253 "parameters": [ |
| 254 { "name": "url", "type": "string", "description": "URL to na vigate the page to." } | 254 { "name": "url", "type": "string", "description": "URL to na vigate the page to." } |
| 255 ], | 255 ], |
| 256 "returns": [ | 256 "returns": [ |
| 257 { "name": "frameId", "$ref": "FrameId", "experimental": true , "description": "Frame id that will be navigated." } | 257 { "name": "frameId", "$ref": "FrameId", "experimental": true , "description": "Frame id that will be navigated." } |
| 258 ], | 258 ], |
| 259 "description": "Navigates current page to the given URL." | 259 "description": "Navigates current page to the given URL." |
| 260 }, | 260 }, |
| 261 { | 261 { |
| 262 "name": "stop", | |
|
dgozman
2016/11/24 17:18:24
Let's call this stopLoading to emphasize that we d
alex clarke (OOO till 29th)
2016/11/25 11:54:46
Done.
| |
| 263 "description": "For the specified target stop all navigations an d pending resource fetches.", | |
| 264 "experimental": true | |
| 265 }, | |
| 266 { | |
| 262 "name": "getNavigationHistory", | 267 "name": "getNavigationHistory", |
| 263 "returns": [ | 268 "returns": [ |
| 264 { "name": "currentIndex", "type": "integer", "description": "Ind ex of the current navigation history entry." }, | 269 { "name": "currentIndex", "type": "integer", "description": "Ind ex of the current navigation history entry." }, |
| 265 { "name": "entries", "type": "array", "items": { "$ref": "Naviga tionEntry" }, "description": "Array of navigation history entries." } | 270 { "name": "entries", "type": "array", "items": { "$ref": "Naviga tionEntry" }, "description": "Array of navigation history entries." } |
| 266 ], | 271 ], |
| 267 "description": "Returns navigation history for the current page.", | 272 "description": "Returns navigation history for the current page.", |
| 268 "experimental": true | 273 "experimental": true |
| 269 }, | 274 }, |
| 270 { | 275 { |
| 271 "name": "navigateToHistoryEntry", | 276 "name": "navigateToHistoryEntry", |
| (...skipping 4215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4487 "name": "accepted", | 4492 "name": "accepted", |
| 4488 "description": "Informs that port was successfully bound and got a specified connection id.", | 4493 "description": "Informs that port was successfully bound and got a specified connection id.", |
| 4489 "parameters": [ | 4494 "parameters": [ |
| 4490 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, | 4495 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, |
| 4491 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } | 4496 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } |
| 4492 ] | 4497 ] |
| 4493 } | 4498 } |
| 4494 ] | 4499 ] |
| 4495 }] | 4500 }] |
| 4496 } | 4501 } |
| OLD | NEW |