| Index: third_party/WebKit/Source/devtools/protocol.json
|
| diff --git a/third_party/WebKit/Source/devtools/protocol.json b/third_party/WebKit/Source/devtools/protocol.json
|
| index 6d3e88e58ed627cf7b0f8ddef7cf29c2db1b0d5d..83a741f61cf9a894ef0ea5d54a4b7ea90e2d748f 100644
|
| --- a/third_party/WebKit/Source/devtools/protocol.json
|
| +++ b/third_party/WebKit/Source/devtools/protocol.json
|
| @@ -143,7 +143,7 @@
|
| {
|
| "id": "ScreencastFrameMetadata",
|
| "type": "object",
|
| - "description": "Screencast frame metadata",
|
| + "description": "Screencast frame metadata.",
|
| "properties": [
|
| { "name": "offsetTop", "type": "number", "hidden": true, "description": "Top offset in DIP." },
|
| { "name": "pageScaleFactor", "type": "number", "hidden": true, "description": "Page scale factor." },
|
| @@ -157,10 +157,22 @@
|
| },
|
| {
|
| "id": "DialogType",
|
| - "description": "Javascript dialog type",
|
| + "description": "Javascript dialog type.",
|
| "type": "string",
|
| "enum": ["alert", "confirm", "prompt", "beforeunload"],
|
| "hidden": true
|
| + },
|
| + {
|
| + "id": "AppManifestError",
|
| + "description": "Error while paring app manifest.",
|
| + "type": "object",
|
| + "properties": [
|
| + { "name": "message", "type": "string", "description": "Error message." },
|
| + { "name": "critical", "type": "integer", "description": "If criticial, this is a non-recoverable parse error." },
|
| + { "name": "line", "type": "integer", "description": "Error line." },
|
| + { "name": "column", "type": "integer", "description": "Error column." }
|
| + ],
|
| + "hidden": true
|
| }
|
| ],
|
| "commands": [
|
| @@ -448,6 +460,15 @@
|
| "description": "Sets overlay message."
|
| },
|
| {
|
| + "name": "getAppManifest",
|
| + "hidden": true,
|
| + "returns": [
|
| + { "name": "data", "type": "string", "optional": true, "description": "Manifest content." },
|
| + { "name": "errors", "type": "array", "items": { "$ref": "AppManifestError" } }
|
| + ],
|
| + "handlers": ["none"]
|
| + },
|
| + {
|
| "name": "requestAppBanner",
|
| "hidden": true,
|
| "handlers": ["browser"]
|
|
|