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

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

Issue 10634020: [FileManager] Do drive search incrementally (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 4 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 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 "name": "searchGData", 921 "name": "searchGData",
922 "type": "function", 922 "type": "function",
923 "description": "Performs drive content search.", 923 "description": "Performs drive content search.",
924 "parameters": [ 924 "parameters": [
925 { 925 {
926 "name": "query", 926 "name": "query",
927 "description": "Search query.", 927 "description": "Search query.",
928 "type": "string" 928 "type": "string"
929 }, 929 },
930 { 930 {
931 "name": "nextFeed",
932 "type": "string",
933 "description": "ID of the search feed that should be fetched next. V alue passed here should be gotten from previous searchGData call. It can be empt y for the initial search request."
934 },
935 {
931 "name": "callback", 936 "name": "callback",
932 "type": "function", 937 "type": "function",
933 "parameters": [ 938 "parameters": [
934 { 939 {
935 "name": "entries", 940 "name": "entries",
936 "type": "array", 941 "type": "array",
937 "items": { 942 "items": {
938 "type": "object", 943 "type": "object",
939 "isInstanceOf": "Entry", 944 "isInstanceOf": "Entry",
940 "description": "Entry representing a search result." 945 "description": "Entry representing a search result."
941 } 946 }
947 },
948 {
949 "name": "nextFeed",
950 "type": "string",
951 "description": "ID of the feed that contains next chunk of the s earch result. Should be sent to the next searchGData request to perform incremen tal search."
942 } 952 }
943 ] 953 ]
944 } 954 }
945 ] 955 ]
946 }, 956 },
947 { 957 {
948 "name": "clearDriveCache", 958 "name": "clearDriveCache",
949 "description": "Clear all GData local caches.", 959 "description": "Clear all GData local caches.",
950 "parameters": [] 960 "parameters": []
951 }, 961 },
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
1051 }, 1061 },
1052 { 1062 {
1053 "name": "onNetworkConnectionChanged", 1063 "name": "onNetworkConnectionChanged",
1054 "type": "function", 1064 "type": "function",
1055 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getNetworkConnectionState'.", 1065 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getNetworkConnectionState'.",
1056 "parameters": [] 1066 "parameters": []
1057 } 1067 }
1058 ] 1068 ]
1059 } 1069 }
1060 ] 1070 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698