2 "domain": "ApplicationCache",
6 "id": "ApplicationCacheResource",
8 "description": "Detailed application cache resource information.",
10 { "name": "url", "type": "string", "description": "Resource url." },
11 { "name": "size", "type": "integer", "description": "Resource size." },
12 { "name": "type", "type": "string", "description": "Resource type." }
16 "id": "ApplicationCache",
18 "description": "Detailed application cache information.",
20 { "name": "manifestURL", "type": "string", "description": "Manifest URL." },
21 { "name": "size", "type": "number", "description": "Application cache size." },
22 { "name": "creationTime", "type": "number", "description": "Application cache creation time." },
23 { "name": "updateTime", "type": "number", "description": "Application cache update time." },
24 { "name": "resources", "type": "array", "items": { "$ref": "ApplicationCacheResource" }, "description": "Application cache resources." }
28 "id": "FrameWithManifest",
30 "description": "Frame identifier - manifest URL pair.",
32 { "name": "frameId", "$ref": "Network.FrameId", "description": "Frame identifier." },
33 { "name": "manifestURL", "type": "string", "description": "Manifest URL." },
34 { "name": "status", "type": "integer", "description": "Application cache status." }
40 "name": "getFramesWithManifests",
42 { "name": "frameIds", "type": "array", "items": { "$ref": "FrameWithManifest" }, "description": "Array of frame identifiers with manifest urls for each frame containing a document associated with some application cache." }
44 "description": "Returns array of frame identifiers with manifest urls for each frame containing a document associated with some application cache."
48 "description": "Enables application cache domain notifications."
51 "name": "getManifestForFrame",
53 { "name": "frameId", "$ref": "Network.FrameId", "description": "Identifier of the frame containing document whose manifest is retrieved." }
56 { "name": "manifestURL", "type": "string", "description": "Manifest URL for document in the given frame." }
58 "description": "Returns manifest URL for document in the given frame."
61 "name": "getApplicationCacheForFrame",
63 { "name": "frameId", "$ref": "Network.FrameId", "description": "Identifier of the frame containing document whose application cache is retrieved." }
66 { "name": "applicationCache", "$ref": "ApplicationCache", "description": "Relevant application cache data for the document in given frame." }
68 "description": "Returns relevant application cache data for the document in given frame."
73 "name": "applicationCacheStatusUpdated",
75 { "name": "frameId", "$ref": "Network.FrameId", "description": "Identifier of the frame containing document whose application cache updated status." },
76 { "name": "manifestURL", "type": "string", "description": "Manifest URL." },
77 { "name": "status", "type": "integer", "description": "Updated application cache status." }
81 "name": "networkStateUpdated",
83 { "name": "isNowOnline", "type": "boolean" }