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

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

Issue 7189029: Implement an initial extension settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Remove core file Created 9 years, 6 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/extension_api.json
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
index 1613b9053703ece72a046054c8a6f05fad42fed3..f20060c42f44b863b60079a7ef6bd8e81bf5b4ce 100644
--- a/chrome/common/extensions/api/extension_api.json
+++ b/chrome/common/extensions/api/extension_api.json
@@ -699,6 +699,124 @@
]
},
{
+ "namespace": "experimental.settings",
+ "types": [],
+ "functions": [
+ {
+ "name": "get",
+ "type": "function",
+ "description": "Gets one or more values from settings.",
+ "parameters": [
+ {
+ "name": "keys",
+ "choices": [
+ {"type": "string"},
+ {"type": "array", "items": {"type": "string"}, "minItems": 1}
+ ],
+ "description": "A single key or a list of keys to get from settings. Leave empty to get the entire contents of settings; this should only be used for debugging.",
+ "optional": true
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "description": "Callback with settings values, or on failure (in which case lastError will be set).",
+ "parameters": [
+ {
+ "name": "settings",
+ "type": "object",
+ "properties": {},
+ "additionalProperties": { "type": "any" },
+ "description": "Object with given keys set to settings values."
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "set",
+ "type": "function",
+ "description": "Sets multiple settings values.",
+ "parameters": [
+ {
+ "name": "settings",
+ "type": "object",
+ "properties": {},
+ "additionalProperties": { "type": "any" },
+ "description": "Object to augment settings with. Values that cannot be serialized (functions, etc) will be ignored."
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "description": "Callback with settings values, or on failure (in which case lastError will be set).",
+ "parameters": [
+ {
+ "name": "settings",
+ "type": "object",
+ "properties": {},
+ "additionalProperties": { "type": "any" },
+ "description": "Object with given keys set to settings values."
+ }
+ ],
+ "optional": true
+ }
+ ]
+ },
+ {
+ "name": "remove",
+ "type": "function",
+ "description": "Removes one or more values from settings.",
+ "parameters": [
+ {
+ "name": "keys",
+ "choices": [
+ {"type": "string"},
+ {"type": "array", "items": {"type": "string"}, "minItems": 1}
+ ],
+ "description": "A single key or a list of keys to remove from settings."
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "description": "Callback with an empty settings object, or on failure (in which case lastError will be set).",
Matt Perry 2011/06/29 18:08:11 I didn't notice this before, but why are we passin
not at google - send to devlin 2011/08/03 06:36:51 Initially so that, C++ implementation wise, all me
Matt Perry 2011/08/03 22:57:47 If you pass NULL to that callback (which then sets
not at google - send to devlin 2011/08/04 00:59:06 Done.
+ "parameters": [
+ {
+ "name": "settings",
+ "type": "object",
+ "properties": {},
+ "additionalProperties": { "type": "any" },
+ "description": "An empty object."
+ }
+ ],
+ "optional": true
+ }
+ ]
+ },
+ {
+ "name": "clear",
+ "type": "function",
+ "description": "Removes all values from settings.",
+ "parameters": [
+ {
+ "name": "callback",
+ "type": "function",
+ "description": "Callback with an empty settings object, or on failure (in which case lastError will be set).",
Matt Perry 2011/06/29 18:08:11 ditto
not at google - send to devlin 2011/08/04 00:59:06 Done.
+ "parameters": [
+ {
+ "name": "settings",
+ "type": "object",
+ "properties": {},
+ "additionalProperties": { "type": "any" },
+ "description": "An empty object."
+ }
+ ],
+ "optional": true
+ }
+ ]
+ }
+ ],
+ "events": []
+ },
+ {
"namespace": "windows",
"types": [
{

Powered by Google App Engine
This is Rietveld 408576698