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 53ecbc9cf65cb0ae4400346bf7e7dc327caa56c5..0b0e9cf18291a2d7665fabac5ff8c5b07b6c1455 100644 |
| --- a/chrome/common/extensions/api/networking_private.json |
| +++ b/chrome/common/extensions/api/networking_private.json |
| @@ -66,6 +66,49 @@ |
| ] |
| }, |
| { |
| + "name": "getState", |
| + "description": "Gets the cached read-only properties of the network with id networkGuid.", |
|
pneubeck (no reviews)
2013/03/07 13:06:18
Mention here and at getVisibleNetworks, that both
Greg Spencer (Chromium)
2013/03/07 22:01:23
Good point. Done.
|
| + "parameters": [ |
| + { |
| + "name": "networkGuid", |
| + "type": "string", |
| + "description": "The unique identifier of the network to set properties on." |
| + }, |
| + { |
| + "name": "callback", |
| + "type": "function", |
| + "parameters": [ |
| + { |
| + "name": "properties", |
| + "$ref": "NetworkProperties", |
| + "description": "Results of the query for network properties." |
| + } |
| + ] |
| + } |
| + ] |
| + }, |
| + { |
| + "name": "setProperties", |
| + "description": "Sets the properties of the network with id networkGuid.", |
| + "parameters": [ |
| + { |
| + "name": "networkGuid", |
| + "type": "string", |
| + "description": "The unique identifier of the network to set properties on." |
| + }, |
| + { |
| + "name": "properties", |
| + "$ref": "NetworkProperties", |
| + "description": "The properties to set on the network." |
| + }, |
| + { |
| + "name": "callback", |
| + "type": "function", |
| + "parameters": [] |
| + } |
| + ] |
| + }, |
| + { |
| "name": "getVisibleNetworks", |
| "description": "Gets the list of visible networks.", |
| "parameters": [ |