Chromium Code Reviews| Index: chrome/common/extensions/api/networking_private.json |
| diff --git a/chrome/common/extensions/api/networking_private.json b/chrome/common/extensions/api/networking_private.json |
| index 6245a313e7f735cc29bd9ee0a80a207629b14160..ebb1109561e76a0792517bbb3437f89d263da39e 100644 |
| --- a/chrome/common/extensions/api/networking_private.json |
| +++ b/chrome/common/extensions/api/networking_private.json |
| @@ -16,6 +16,11 @@ |
| "additionalProperties": { "type": "any" } |
| }, |
| { |
| + "id": "ManagedNetworkProperties", |
| + "type": "object", |
| + "additionalProperties": { "type": "any" } |
| + }, |
| + { |
| "id": "VerificationProperties", |
| "type": "object", |
| "properties": { |
| @@ -66,6 +71,28 @@ |
| ] |
| }, |
| { |
| + "name": "getManagedProperties", |
| + "description": "Gets the merged properties of the network with id networkGuid from the sources: User settings, shared settings, user policy, device policy and the currently active settings.", |
|
not at google - send to devlin
2013/04/17 17:56:20
I don't understand the comment. Is it saying that
|
| + "parameters": [ |
| + { |
| + "name": "networkGuid", |
| + "type": "string", |
| + "description": "The unique identifier of the network to get properties from." |
| + }, |
| + { |
| + "name": "callback", |
| + "type": "function", |
| + "parameters": [ |
| + { |
| + "name": "properties", |
| + "$ref": "ManagedNetworkProperties", |
|
not at google - send to devlin
2013/04/17 17:56:20
If it's only used in once place then no need to $r
|
| + "description": "Results of the query for managed network properties." |
| + } |
| + ] |
| + } |
| + ] |
| + }, |
| + { |
| "name": "getState", |
| "description": "Gets the cached read-only properties of the network with id networkGuid. This is meant to be a higher performance function than getProperties, which requires a round trip to query the networking subsystem. It only returns a subset of the properties returned by getProperties.", |
| "parameters": [ |