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

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

Issue 18024002: Add the new window item to the Files.app's context menu on the launcher. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments + fixed. Created 7 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
« no previous file with comments | « chrome/browser/resources/file_manager/manifest.json ('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 "description": "none", 8 "description": "none",
9 "types": [ 9 "types": [
10 { 10 {
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 { 1146 {
1147 "name": "result", 1147 "name": "result",
1148 "type": "boolean", 1148 "type": "boolean",
1149 "description": "true if the length is in the valid range, false otherwise." 1149 "description": "true if the length is in the valid range, false otherwise."
1150 } 1150 }
1151 ] 1151 ]
1152 } 1152 }
1153 ] 1153 ]
1154 }, 1154 },
1155 { 1155 {
1156 "name": "openNewWindow",
1157 "description": "Opens a new window of the Files.app.",
1158 "parameters": [
1159 {
1160 "name": "url",
1161 "type": "string",
1162 "description": "Internal url to be opened."
1163 }
1164 ]
1165 },
1166 {
1167 "name": "zoom", 1156 "name": "zoom",
1168 "description": "Changes the zoom factor of the Files.app.", 1157 "description": "Changes the zoom factor of the Files.app.",
1169 "parameters": [ 1158 "parameters": [
1170 { 1159 {
1171 "name": "operation", 1160 "name": "operation",
1172 "type": "string", 1161 "type": "string",
1173 "enum": ["in", "out", "reset"] 1162 "enum": ["in", "out", "reset"]
1174 } 1163 }
1175 ] 1164 ]
1176 } 1165 }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 }, 1222 },
1234 { 1223 {
1235 "name": "onDriveConnectionStatusChanged", 1224 "name": "onDriveConnectionStatusChanged",
1236 "type": "function", 1225 "type": "function",
1237 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getDriveConnectionState'.", 1226 "description": "Fired when the active network connection state changes. The network connection state can be retrieved via 'getDriveConnectionState'.",
1238 "parameters": [] 1227 "parameters": []
1239 } 1228 }
1240 ] 1229 ]
1241 } 1230 }
1242 ] 1231 ]
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698