Index: third_party/WebKit/Source/core/inspector/protocol/Storage.json |
diff --git a/third_party/WebKit/Source/core/inspector/protocol/Storage.json b/third_party/WebKit/Source/core/inspector/protocol/Storage.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a7d09976ba69584b287be20191dc1bb1e3e99012 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/inspector/protocol/Storage.json |
@@ -0,0 +1,49 @@ |
+{ |
+ "domain": "Storage", |
+ "version": { |
+ "major": "1", |
+ "minor": "1" |
+ }, |
+ "hidden": true, |
+ "types": [ |
+ { |
+ "id": "StorageType", |
+ "type": "string", |
+ "enum": [ |
+ "appcache", |
+ "cookies", |
+ "file_systems", |
+ "indexeddb", |
+ "local_storage", |
+ "shader_cache", |
+ "websql", |
+ "webrtc_indetity", |
+ "service_workers", |
+ "cache_storage", |
+ "all" |
+ ], |
+ "description": "Enum of possible storage types." |
+ } |
+ ], |
+ "commands": [ |
+ { |
+ "name": "clearDataForOrigin", |
+ "parameters": [ |
+ { |
+ "name": "origin", |
+ "type": "string", |
+ "description": "Security origin." |
+ }, |
+ { |
+ "name": "storageTypes", |
+ "type": "string", |
+ "description": "Comma separated origin names." |
+ } |
+ ], |
+ "description": "Clears storage for origin.", |
+ "handlers": [ |
+ "browser" |
+ ] |
+ } |
+ ] |
+} |