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

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

Issue 1111563006: [CacheStorage] Entry deletion and cache refresh in Inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test and comments Created 5 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
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 1731 matching lines...) Expand 10 before | Expand all | Expand 10 after
1742 { 1742 {
1743 "id": "CacheId", 1743 "id": "CacheId",
1744 "type": "string", 1744 "type": "string",
1745 "description": "Unique identifier of the Cache object." 1745 "description": "Unique identifier of the Cache object."
1746 }, 1746 },
1747 { 1747 {
1748 "id": "DataEntry", 1748 "id": "DataEntry",
1749 "type": "object", 1749 "type": "object",
1750 "description": "Data entry.", 1750 "description": "Data entry.",
1751 "properties": [ 1751 "properties": [
1752 { "name": "request", "type": "string", "description": "JSON- stringified request object." }, 1752 { "name": "request", "type": "string", "description": "Reque st url spec." },
1753 { "name": "response", "type": "string", "description": "JSON -stringified response object." } 1753 { "name": "response", "type": "string", "description": "Resp onse stataus text." }
1754 ] 1754 ]
1755 }, 1755 },
1756 { 1756 {
1757 "id": "Cache", 1757 "id": "Cache",
1758 "type": "object", 1758 "type": "object",
1759 "description": "Cache identifier.", 1759 "description": "Cache identifier.",
1760 "properties": [ 1760 "properties": [
1761 { "name": "cacheId", "$ref": "CacheId", "description": "An o paque unique id of the cache." }, 1761 { "name": "cacheId", "$ref": "CacheId", "description": "An o paque unique id of the cache." },
1762 { "name": "securityOrigin", "type": "string", "description": "Security origin of the cache." }, 1762 { "name": "securityOrigin", "type": "string", "description": "Security origin of the cache." },
1763 { "name": "cacheName", "type": "string", "description": "The name of the cache." } 1763 { "name": "cacheName", "type": "string", "description": "The name of the cache." }
(...skipping 26 matching lines...) Expand all
1790 ], 1790 ],
1791 "description": "Requests data from cache." 1791 "description": "Requests data from cache."
1792 }, 1792 },
1793 { 1793 {
1794 "name": "deleteCache", 1794 "name": "deleteCache",
1795 "async": true, 1795 "async": true,
1796 "parameters": [ 1796 "parameters": [
1797 { "name": "cacheId", "$ref": "CacheId", "description": "Id o f cache for deletion." } 1797 { "name": "cacheId", "$ref": "CacheId", "description": "Id o f cache for deletion." }
1798 ], 1798 ],
1799 "description": "Deletes a cache." 1799 "description": "Deletes a cache."
1800 },
1801 {
1802 "name": "deleteEntry",
1803 "async": true,
1804 "parameters": [
1805 { "name": "cacheId", "$ref": "CacheId", "description": "Id o f cache where the entry will be deleted." },
1806 { "name": "request", "type": "string", "description": "URL s pec of the request." }
1807 ],
1808 "description": "Deletes a cache entry."
1800 } 1809 }
1801 ] 1810 ]
1802 }, 1811 },
1803 { 1812 {
1804 "domain": "DOMStorage", 1813 "domain": "DOMStorage",
1805 "hidden": true, 1814 "hidden": true,
1806 "description": "Query and modify DOM storage.", 1815 "description": "Query and modify DOM storage.",
1807 "types": [ 1816 "types": [
1808 { 1817 {
1809 "id": "StorageId", 1818 "id": "StorageId",
(...skipping 3155 matching lines...) Expand 10 before | Expand all | Expand 10 after
4965 ], 4974 ],
4966 "returns": [ 4975 "returns": [
4967 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4976 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4968 ], 4977 ],
4969 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4978 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4970 "hidden": true 4979 "hidden": true
4971 } 4980 }
4972 ] 4981 ]
4973 }] 4982 }]
4974 } 4983 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/ServiceWorkerCacheModel.js ('k') | Source/modules/cachestorage/InspectorCacheStorageAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698