Chromium Code Reviews| 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 923af3665ad6073cd13ff20625c85c06acfc4ab6..4d948c775242bb9b98335cc12e09b6b8c48391ae 100644 |
| --- a/third_party/WebKit/Source/devtools/protocol.json |
| +++ b/third_party/WebKit/Source/devtools/protocol.json |
| @@ -5122,5 +5122,38 @@ |
| "hidden": true |
| } |
| ] |
| + }, |
| + { |
| + "domain": "Storage", |
| + "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" ], |
|
caseq
2016/05/06 18:13:08
], => next line
|
| + "description": "Enum of possible storage types." |
|
caseq
2016/05/06 18:13:08
indent!
|
| + } |
| + ], |
| + "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"] |
| + } |
| + ] |
| }] |
| } |