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

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

Issue 13913009: filemanger: Pass SHARED_WITH_ME search type to searchDriveMetadata(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add an error case. Created 7 years, 8 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
« no previous file with comments | « chrome/browser/resources/file_manager/js/volume_manager.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 "name": "searchParams", 1067 "name": "searchParams",
1068 "type": "object", 1068 "type": "object",
1069 "properties": { 1069 "properties": {
1070 "query": { 1070 "query": {
1071 "type": "string", 1071 "type": "string",
1072 "optional": true, 1072 "optional": true,
1073 "description": "Search query. It can be empty. Any filename matc hes to an empty query." 1073 "description": "Search query. It can be empty. Any filename matc hes to an empty query."
1074 }, 1074 },
1075 "types": { 1075 "types": {
1076 "type": "string", 1076 "type": "string",
1077 "enum": ["EXCLUDE_DIRECTORIES", "ALL"], 1077 "enum": ["EXCLUDE_DIRECTORIES", "SHARED_WITH_ME", "ALL"],
1078 "optional": true, 1078 "optional": true,
1079 "description": "The type of entry that is needed. Default to ALL ." 1079 "description": "The type of entry that is needed. Default to ALL ."
1080 }, 1080 },
1081 "maxResults": { 1081 "maxResults": {
1082 "type": "integer", 1082 "type": "integer",
1083 "optional": true, 1083 "optional": true,
1084 "description": "Maximum number of results." 1084 "description": "Maximum number of results."
1085 } 1085 }
1086 } 1086 }
1087 }, 1087 },
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 }, 1289 },
1290 { 1290 {
1291 "name": "onDriveConnectionStatusChanged", 1291 "name": "onDriveConnectionStatusChanged",
1292 "type": "function", 1292 "type": "function",
1293 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getDriveConnectionState'.", 1293 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getDriveConnectionState'.",
1294 "parameters": [] 1294 "parameters": []
1295 } 1295 }
1296 ] 1296 ]
1297 } 1297 }
1298 ] 1298 ]
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/volume_manager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698