Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(841)

Side by Side Diff: chrome/common/extensions/api/file_browser_private.json

Issue 11745015: Update references to the extension messaging APIs to point to the "runtime" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
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 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/extension_api_unittest.cc ('k') | chrome/common/extensions/api/input_ime.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698