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

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

Issue 10832185: FileBrowser: Hide DriveApps on Open-with menu when the selected file is not on drive. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_tasks.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 {
11 "id": "FileBrowserTask", 11 "id": "FileBrowserTask",
12 "type": "object", 12 "type": "object",
13 "description": "Represents information about available browser tasks. A task is an abstraction of an operation that the file browser can perform over a selected file set.", 13 "description": "Represents information about available browser tasks. A task is an abstraction of an operation that the file browser can perform over a selected file set.",
14 "properties": { 14 "properties": {
15 "taskId": {"type": "string", "description": "The unique identifier of the task."}, 15 "taskId": {"type": "string", "description": "The unique identifier of the task."},
16 "title": {"type": "string", "description": "Task title."}, 16 "title": {"type": "string", "description": "Task title."},
17 "iconUrl": {"type": "string", "description": "Task icon url (from chro me://extension-icon/...)"}, 17 "iconUrl": {"type": "string", "description": "Task icon url (from chro me://extension-icon/...)"},
18 "driveApp": {"type": "boolean", "description": "True if this is Drive App."},
18 "patterns": { 19 "patterns": {
19 "type": "array", 20 "type": "array",
20 "items": { "type": "string" }, 21 "items": { "type": "string" },
21 "description": "The list of URL patterns supported by the task that matched at least one file." 22 "description": "The list of URL patterns supported by the task that matched at least one file."
22 } 23 }
23 } 24 }
24 }, 25 },
25 { 26 {
26 "id": "VolumeInfo", 27 "id": "VolumeInfo",
27 "type": "object", 28 "type": "object",
(...skipping 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after
1061 }, 1062 },
1062 { 1063 {
1063 "name": "onNetworkConnectionChanged", 1064 "name": "onNetworkConnectionChanged",
1064 "type": "function", 1065 "type": "function",
1065 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getNetworkConnectionState'.", 1066 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getNetworkConnectionState'.",
1066 "parameters": [] 1067 "parameters": []
1067 } 1068 }
1068 ] 1069 ]
1069 } 1070 }
1070 ] 1071 ]
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_tasks.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698