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

Unified Diff: Source/devtools/protocol.json

Issue 21163003: DevTools: Implement undo, redo operations for the DOMStorage views. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/protocol.json
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
index 63857af640ab87c441bb60d7f5c491218fc114e2..8d28fdf86c9031e38e1e36831b80c30c448c6cf7 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -1438,6 +1438,17 @@
"description": "Disables storage tracking, prevents storage events from being sent to the client."
},
{
+ "name": "getDOMStorageItem",
+ "parameters": [
+ { "name": "storageId", "$ref": "StorageId" },
+ { "name": "key", "type": "string" }
+ ],
+ "returns": [
+ { "name": "exists", "type": "boolean" },
+ { "name": "value", "type": "string" }
apavlov 2013/07/31 12:51:35 make this "optional": true and get rid of the "exi
+ ]
+ },
+ {
"name": "getDOMStorageItems",
"parameters": [
{ "name": "storageId", "$ref": "StorageId" }
« Source/devtools/front_end/ResourcesPanel.js ('K') | « Source/devtools/front_end/ResourcesPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698