| 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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 }, | 830 }, |
| 831 { | 831 { |
| 832 "name": "destinationFileUrl", | 832 "name": "destinationFileUrl", |
| 833 "type": "string", | 833 "type": "string", |
| 834 "description": "Destination file on the remote file system." | 834 "description": "Destination file on the remote file system." |
| 835 }, | 835 }, |
| 836 { | 836 { |
| 837 "name": "callback", | 837 "name": "callback", |
| 838 "type": "function", | 838 "type": "function", |
| 839 "optional": true, | 839 "optional": true, |
| 840 "description": "Completion callback. chrome.extension.lastError will
be set if there was an error.", | 840 "description": "Completion callback. chrome.runtime.lastError will b
e set if there was an error.", |
| 841 "parameters": [] | 841 "parameters": [] |
| 842 } | 842 } |
| 843 ] | 843 ] |
| 844 }, | 844 }, |
| 845 { | 845 { |
| 846 "name": "cancelFileTransfers", | 846 "name": "cancelFileTransfers", |
| 847 "description": "Cancels ongoing file transfers for selected files.", | 847 "description": "Cancels ongoing file transfers for selected files.", |
| 848 "parameters": [ | 848 "parameters": [ |
| 849 { | 849 { |
| 850 "name": "fileUrls", | 850 "name": "fileUrls", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 877 }, | 877 }, |
| 878 { | 878 { |
| 879 "name": "lastModified", | 879 "name": "lastModified", |
| 880 "type": "string", | 880 "type": "string", |
| 881 "description": "Date to set as last modification date in ms. Should
be passed to C++ as string, since 'long' type isn't supported" | 881 "description": "Date to set as last modification date in ms. Should
be passed to C++ as string, since 'long' type isn't supported" |
| 882 }, | 882 }, |
| 883 { | 883 { |
| 884 "name": "callback", | 884 "name": "callback", |
| 885 "type": "function", | 885 "type": "function", |
| 886 "optional": true, | 886 "optional": true, |
| 887 "description": "Completion callback. chrome.extension.lastError will
be set if there was an error.", | 887 "description": "Completion callback. chrome.runtime.lastError will b
e set if there was an error.", |
| 888 "parameters": [] | 888 "parameters": [] |
| 889 } | 889 } |
| 890 ] | 890 ] |
| 891 }, | 891 }, |
| 892 { | 892 { |
| 893 "name": "getSizeStats", | 893 "name": "getSizeStats", |
| 894 "description": "Retrieves total and remaining size of a mount point.", | 894 "description": "Retrieves total and remaining size of a mount point.", |
| 895 "parameters": [ | 895 "parameters": [ |
| 896 { | 896 { |
| 897 "name": "mountPath", | 897 "name": "mountPath", |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1184 }, | 1184 }, |
| 1185 { | 1185 { |
| 1186 "name": "onNetworkConnectionChanged", | 1186 "name": "onNetworkConnectionChanged", |
| 1187 "type": "function", | 1187 "type": "function", |
| 1188 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getNetworkConnectionState'.", | 1188 "description": "Fired when the active network connection state changes.
The network connection state can be retrieved via 'getNetworkConnectionState'.", |
| 1189 "parameters": [] | 1189 "parameters": [] |
| 1190 } | 1190 } |
| 1191 ] | 1191 ] |
| 1192 } | 1192 } |
| 1193 ] | 1193 ] |
| OLD | NEW |