| 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 "compiler_options": { | 8 "compiler_options": { |
| 9 "implemented_in": "chrome/browser/chromeos/extensions/file_manager/file_br
owser_private_api_functions.h" | 9 "implemented_in": "chrome/browser/chromeos/extensions/file_manager/file_br
owser_private_api_functions.h" |
| 10 }, | 10 }, |
| (...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 "parameters": [ | 940 "parameters": [ |
| 941 { | 941 { |
| 942 "name": "callback", | 942 "name": "callback", |
| 943 "type": "function", | 943 "type": "function", |
| 944 "parameters": [ | 944 "parameters": [ |
| 945 { | 945 { |
| 946 "name": "result", | 946 "name": "result", |
| 947 "type": "object", | 947 "type": "object", |
| 948 "properties": { | 948 "properties": { |
| 949 "type": {"type": "string"}, | 949 "type": {"type": "string"}, |
| 950 "reasons": { | 950 "reason": { |
| 951 "type": "array", | 951 "type": "string", |
| 952 "description": "Reasons of offline.", | 952 "description": "Reasons of offline.", |
| 953 "items": { "type": "string" } | 953 "optional": true |
| 954 } | 954 } |
| 955 } | 955 } |
| 956 } | 956 } |
| 957 ] | 957 ] |
| 958 } | 958 } |
| 959 ] | 959 ] |
| 960 }, | 960 }, |
| 961 { | 961 { |
| 962 "name": "validatePathNameLength", | 962 "name": "validatePathNameLength", |
| 963 "description": "Checks whether the path name length fits in the limit of
the filesystem.", | 963 "description": "Checks whether the path name length fits in the limit of
the filesystem.", |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1167 }, | 1167 }, |
| 1168 { | 1168 { |
| 1169 "name": "onDriveConnectionStatusChanged", | 1169 "name": "onDriveConnectionStatusChanged", |
| 1170 "type": "function", | 1170 "type": "function", |
| 1171 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getDriveConnectionState'.", | 1171 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getDriveConnectionState'.", |
| 1172 "parameters": [] | 1172 "parameters": [] |
| 1173 } | 1173 } |
| 1174 ] | 1174 ] |
| 1175 } | 1175 } |
| 1176 ] | 1176 ] |
| OLD | NEW |