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

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

Issue 1706413002: Indexed DB: Rename "int version" to "version" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 10 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 1791 matching lines...) Expand 10 before | Expand all | Expand 10 after
1802 { 1802 {
1803 "domain": "IndexedDB", 1803 "domain": "IndexedDB",
1804 "hidden": true, 1804 "hidden": true,
1805 "types": [ 1805 "types": [
1806 { 1806 {
1807 "id": "DatabaseWithObjectStores", 1807 "id": "DatabaseWithObjectStores",
1808 "type": "object", 1808 "type": "object",
1809 "description": "Database with an array of object stores.", 1809 "description": "Database with an array of object stores.",
1810 "properties": [ 1810 "properties": [
1811 { "name": "name", "type": "string", "description": "Database name." }, 1811 { "name": "name", "type": "string", "description": "Database name." },
1812 { "name": "intVersion", "type": "integer", "description": "D atabase version." }, 1812 { "name": "version", "type": "integer", "description": "Data base version." },
1813 { "name": "objectStores", "type": "array", "items": { "$ref" : "ObjectStore" }, "description": "Object stores in this database." } 1813 { "name": "objectStores", "type": "array", "items": { "$ref" : "ObjectStore" }, "description": "Object stores in this database." }
1814 ] 1814 ]
1815 }, 1815 },
1816 { 1816 {
1817 "id": "ObjectStore", 1817 "id": "ObjectStore",
1818 "type": "object", 1818 "type": "object",
1819 "description": "Object store.", 1819 "description": "Object store.",
1820 "properties": [ 1820 "properties": [
1821 { "name": "name", "type": "string", "description": "Object s tore name." }, 1821 { "name": "name", "type": "string", "description": "Object s tore name." },
1822 { "name": "keyPath", "$ref": "KeyPath", "description": "Obje ct store key path." }, 1822 { "name": "keyPath", "$ref": "KeyPath", "description": "Obje ct store key path." },
(...skipping 3361 matching lines...) Expand 10 before | Expand all | Expand 10 after
5184 ], 5184 ],
5185 "returns": [ 5185 "returns": [
5186 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5186 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5187 ], 5187 ],
5188 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5188 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5189 "hidden": true 5189 "hidden": true
5190 } 5190 }
5191 ] 5191 ]
5192 }] 5192 }]
5193 } 5193 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698