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

Unified Diff: chrome/common/extensions/api/storage.json

Issue 10701012: JSON Schema Compiler: Added event compilation. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Tested GetAllPossibleParameterLists better. Created 8 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: chrome/common/extensions/api/storage.json
diff --git a/chrome/common/extensions/api/storage.json b/chrome/common/extensions/api/storage.json
index 94332ddc1837b029ca87bb1870c3fe3369387f3b..82cbb2185bf2bdfb7cfa3c9a887238e679efcfb1 100644
--- a/chrome/common/extensions/api/storage.json
+++ b/chrome/common/extensions/api/storage.json
@@ -161,9 +161,9 @@
"description": "Object mapping each key that changed to its corresponding <a href='#type-StorageChange'>StorageChange</a> for that item."
},
{
- "name": "namespace",
+ "name": "areaName",
"type": "string",
- "description": "The namespace (\"sync\" or \"local\") of the storage area the changes are for."
+ "description": "The name of the storage area (\"sync\" or \"local\") the changes are for."
}
]
}
@@ -171,7 +171,7 @@
"properties": {
"sync": {
"$ref": "StorageArea",
- "description": "Items under the \"sync\" namespace are synced using Chrome Sync.",
+ "description": "Items under the \"sync\" storage area are synced using Chrome Sync.",
"value": [ "sync" ],
"properties": {
"QUOTA_BYTES": {
@@ -198,7 +198,7 @@
},
"local": {
"$ref": "StorageArea",
- "description": "Items under the \"local\" namespace are local to each machine.",
+ "description": "Items under the \"local\" storage area are local to each machine.",
"value": [ "local" ],
"properties": {
"QUOTA_BYTES": {

Powered by Google App Engine
This is Rietveld 408576698