OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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": "chromeosInfoPrivate", | 7 "namespace": "chromeosInfoPrivate", |
| 8 "compiler_options": { |
| 9 "implemented_in": "chrome/browser/chromeos/extensions/info_private_api.h" |
| 10 }, |
| 11 "platforms": ["chromeos"], |
8 "nodoc": "true", | 12 "nodoc": "true", |
9 "functions": [ | 13 "functions": [ |
10 { | 14 { |
11 "name": "get", | 15 "name": "get", |
12 "description": "Fetches customization values for the given property name
s. See property names in the declaration of the returned dictionary.", | 16 "description": "Fetches customization values for the given property name
s. See property names in the declaration of the returned dictionary.", |
13 "type": "function", | 17 "type": "function", |
14 "parameters": [ | 18 "parameters": [ |
15 { | 19 { |
16 "name": "propertyNames", | 20 "name": "propertyNames", |
17 "type": "array", | 21 "type": "array", |
(...skipping 16 matching lines...) Expand all Loading... |
34 "isOwner" : {"type": "boolean", "optional": "true", "descripti
on": "True if current logged in user is device owner"} | 38 "isOwner" : {"type": "boolean", "optional": "true", "descripti
on": "True if current logged in user is device owner"} |
35 } | 39 } |
36 } | 40 } |
37 ] | 41 ] |
38 } | 42 } |
39 ] | 43 ] |
40 } | 44 } |
41 ] | 45 ] |
42 } | 46 } |
43 ] | 47 ] |
OLD | NEW |