| 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":"fileBrowserPrivate", | 7 "namespace":"fileBrowserPrivate", |
| 8 "nodoc": "true", | 8 "nodoc": "true", |
| 9 "types": [ | 9 "types": [ |
| 10 { | 10 { |
| (...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1067 "name": "searchParams", | 1067 "name": "searchParams", |
| 1068 "type": "object", | 1068 "type": "object", |
| 1069 "properties": { | 1069 "properties": { |
| 1070 "query": { | 1070 "query": { |
| 1071 "type": "string", | 1071 "type": "string", |
| 1072 "optional": true, | 1072 "optional": true, |
| 1073 "description": "Search query. It can be empty. Any filename matc
hes to an empty query." | 1073 "description": "Search query. It can be empty. Any filename matc
hes to an empty query." |
| 1074 }, | 1074 }, |
| 1075 "types": { | 1075 "types": { |
| 1076 "type": "string", | 1076 "type": "string", |
| 1077 "enum": ["EXCLUDE_DIRECTORIES", "ALL"], | 1077 "enum": ["EXCLUDE_DIRECTORIES", "SHARED_WITH_ME", "ALL"], |
| 1078 "optional": true, | 1078 "optional": true, |
| 1079 "description": "The type of entry that is needed. Default to ALL
." | 1079 "description": "The type of entry that is needed. Default to ALL
." |
| 1080 }, | 1080 }, |
| 1081 "maxResults": { | 1081 "maxResults": { |
| 1082 "type": "integer", | 1082 "type": "integer", |
| 1083 "optional": true, | 1083 "optional": true, |
| 1084 "description": "Maximum number of results." | 1084 "description": "Maximum number of results." |
| 1085 } | 1085 } |
| 1086 } | 1086 } |
| 1087 }, | 1087 }, |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 }, | 1289 }, |
| 1290 { | 1290 { |
| 1291 "name": "onDriveConnectionStatusChanged", | 1291 "name": "onDriveConnectionStatusChanged", |
| 1292 "type": "function", | 1292 "type": "function", |
| 1293 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getDriveConnectionState'.", | 1293 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getDriveConnectionState'.", |
| 1294 "parameters": [] | 1294 "parameters": [] |
| 1295 } | 1295 } |
| 1296 ] | 1296 ] |
| 1297 } | 1297 } |
| 1298 ] | 1298 ] |
| OLD | NEW |