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

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: todo Created 8 years, 5 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": "getNetworkConnectionState", 958 "name": "getNetworkConnectionState",
949 "description": "Retrieves the state of the currently active network conn ection.", 959 "description": "Retrieves the state of the currently active network conn ection.",
950 "parameters": [ 960 "parameters": [
951 { 961 {
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 }, 1056 },
1047 { 1057 {
1048 "name": "onNetworkConnectionChanged", 1058 "name": "onNetworkConnectionChanged",
1049 "type": "function", 1059 "type": "function",
1050 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getNetworkConnectionState'.", 1060 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getNetworkConnectionState'.",
1051 "parameters": [] 1061 "parameters": []
1052 } 1062 }
1053 ] 1063 ]
1054 } 1064 }
1055 ] 1065 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698