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

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

Issue 23477036: file_manager: getFileTasks() to return Drive apps iff all files are on Drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 3 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 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/chromeos/extensions/file_manager/file_br owser_private_api_functions.h" 9 "implemented_in": "chrome/browser/chromeos/extensions/file_manager/file_br owser_private_api_functions.h"
10 }, 10 },
(...skipping 10 matching lines...) Expand all
21 "description": "The unique identifier of the task." 21 "description": "The unique identifier of the task."
22 }, 22 },
23 "title": { 23 "title": {
24 "type": "string", 24 "type": "string",
25 "description": "Task title (ex. App name)." 25 "description": "Task title (ex. App name)."
26 }, 26 },
27 "iconUrl": { 27 "iconUrl": {
28 "type": "string", 28 "type": "string",
29 "description": "Task icon url (from chrome://extension-icon/...)" 29 "description": "Task icon url (from chrome://extension-icon/...)"
30 }, 30 },
31 "driveApp": {
32 "type": "boolean",
33 "description": "True if this is Drive App."
34 },
35 "isDefault": { 31 "isDefault": {
36 "type": "boolean", 32 "type": "boolean",
37 "description": "True if this task is a default task for the selected files." 33 "description": "True if this task is a default task for the selected files."
38 } 34 }
39 } 35 }
40 }, 36 },
41 { 37 {
42 "id": "VolumeInfo", 38 "id": "VolumeInfo",
43 "type": "object", 39 "type": "object",
44 "description": "Mounted disk volume information.", 40 "description": "Mounted disk volume information.",
(...skipping 1277 matching lines...) Expand 10 before | Expand all | Expand 10 after
1322 }, 1318 },
1323 { 1319 {
1324 "name": "onDriveConnectionStatusChanged", 1320 "name": "onDriveConnectionStatusChanged",
1325 "type": "function", 1321 "type": "function",
1326 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getDriveConnectionState'.", 1322 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getDriveConnectionState'.",
1327 "parameters": [] 1323 "parameters": []
1328 } 1324 }
1329 ] 1325 ]
1330 } 1326 }
1331 ] 1327 ]
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