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

Side by Side Diff: chrome/common/extensions/api/networking_private.json

Issue 12319145: Using the new Network*Handlers in networkingPrivate Extension API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial patch. Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 { 6 {
7 "namespace":"networkingPrivate", 7 "namespace":"networkingPrivate",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/chromeos/extensions/networking_private_a pi.h" 9 "implemented_in": "chrome/browser/chromeos/extensions/networking_private_a pi.h"
10 }, 10 },
(...skipping 21 matching lines...) Expand all
32 "description": "A string containing a base64-encoded random binary d ata for use in verifying the signed data." 32 "description": "A string containing a base64-encoded random binary d ata for use in verifying the signed data."
33 }, 33 },
34 "signedData": { 34 "signedData": {
35 "type": "string", 35 "type": "string",
36 "description": "A string containing the identifying data string sign ed by the device." 36 "description": "A string containing the identifying data string sign ed by the device."
37 }, 37 },
38 "deviceSerial": { 38 "deviceSerial": {
39 "type": "string", 39 "type": "string",
40 "description": "A string containing the serial number of the device. " 40 "description": "A string containing the serial number of the device. "
41 } 41 }
42 } 42 }
43 } 43 }
44 ], 44 ],
45 "functions": [ 45 "functions": [
46 { 46 {
47 "name": "getProperties", 47 "name": "getProperties",
48 "description": "Gets the properties of the network with id networkGuid." , 48 "description": "Gets the properties of the network with id networkGuid." ,
49 "parameters": [ 49 "parameters": [
50 { 50 {
51 "name": "networkGuid", 51 "name": "networkGuid",
52 "type": "string", 52 "type": "string",
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 { 223 {
224 "name": "changes", 224 "name": "changes",
225 "type": "array", 225 "type": "array",
226 "items": { "type": "string" } 226 "items": { "type": "string" }
227 } 227 }
228 ] 228 ]
229 } 229 }
230 ] 230 ]
231 } 231 }
232 ] 232 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698