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":"fileBrowserHandler", | 7 "namespace":"fileBrowserHandler", |
| 8 "description": "Use the <code>chrome.fileBrowserHandler</code> module to ext
end the Chrome OS file browser. For example, you can use this API to enable user
s to upload files to your website.", |
8 "platforms": ["chromeos"], | 9 "platforms": ["chromeos"], |
9 "types": [ | 10 "types": [ |
10 { | 11 { |
11 "id": "FileHandlerExecuteEventDetails", | 12 "id": "FileHandlerExecuteEventDetails", |
12 "type": "object", | 13 "type": "object", |
13 "description": "Event details payload for fileBrowserHandler.onExecute e
vent.", | 14 "description": "Event details payload for fileBrowserHandler.onExecute e
vent.", |
14 "properties": { | 15 "properties": { |
15 "entries": { | 16 "entries": { |
16 "type": "array", | 17 "type": "array", |
17 "items": { "type": "any" }, | 18 "items": { "type": "any" }, |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 } | 93 } |
93 } | 94 } |
94 } | 95 } |
95 ] | 96 ] |
96 } | 97 } |
97 ] | 98 ] |
98 } | 99 } |
99 ] | 100 ] |
100 } | 101 } |
101 ] | 102 ] |
OLD | NEW |