OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 [ | |
6 { | |
7 "namespace":"experimental.wallpaperManager", | |
8 "nodoc": "true", | |
9 "functions": [ | |
10 { | |
11 "name": "getStrings", | |
12 "type": "function", | |
13 "description": "Gets Strings.", | |
flackr
2012/07/12 19:40:51
I think you need a better description here. Someth
| |
14 "nodoc": "true", | |
15 "parameters": [ | |
16 { | |
17 "type": "function", | |
18 "name": "callback", | |
19 "parameters": [ | |
20 { | |
21 "name": "result", | |
22 "type": "object", | |
23 "additionalProperties": {"type": "string"} | |
24 } | |
25 ] | |
26 } | |
27 ] | |
28 } | |
29 ] | |
30 } | |
31 ] | |
OLD | NEW |