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

Side by Side Diff: chrome/browser/resources/file_manager/manifest.json

Issue 39123003: [Files.app] Split the JavaScript files into subdirectories: common, background, and foreground (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed test failure. Created 7 years, 1 month 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 { 1 {
2 // chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/ 2 // chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/
3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDlhpGghtnNJ7pluQN0RDwbUxwwi99oM3 5ZEaFYvxPLrf0fIEC18cfDdJi6u4aJ+UoSpgzK731L0P/k4LvK2Rz9kVKOy0+IvuRrWkT7lbrLfA1UEB h02OA1AAshjmyRg4IxCqgl8ia8XWq6HKegS1y1KXZYGgb4qp7Bh9VC4cIzswIBIw==", 3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDlhpGghtnNJ7pluQN0RDwbUxwwi99oM3 5ZEaFYvxPLrf0fIEC18cfDdJi6u4aJ+UoSpgzK731L0P/k4LvK2Rz9kVKOy0+IvuRrWkT7lbrLfA1UEB h02OA1AAshjmyRg4IxCqgl8ia8XWq6HKegS1y1KXZYGgb4qp7Bh9VC4cIzswIBIw==",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "name": "Files", 5 "name": "Files",
6 "version": "3.0", 6 "version": "3.0",
7 "description": "File Manager", 7 "description": "File Manager",
8 "incognito" : "split", 8 "incognito" : "split",
9 "icons": { 9 "icons": {
10 "16": "images/icon16.png", 10 "16": "images/icon16.png",
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 { 202 {
203 "id": "open", 203 "id": "open",
204 "default_title": "__MSG_OPEN_ACTION__", 204 "default_title": "__MSG_OPEN_ACTION__",
205 "default_icon": "images/filetype_generic.png", 205 "default_icon": "images/filetype_generic.png",
206 "file_filters": [] 206 "file_filters": []
207 } 207 }
208 ], 208 ],
209 // Required to import scripts in a web worker. Note, that in Apps v2, it is 209 // Required to import scripts in a web worker. Note, that in Apps v2, it is
210 // enough that anything is passed to web_accessible_resources. If there is 210 // enough that anything is passed to web_accessible_resources. If there is
211 // at least any file, then all files are allowed. http://crbug.com/179127. 211 // at least any file, then all files are allowed. http://crbug.com/179127.
212 "web_accessible_resources": ["js/metadata/byte_reader.js"], 212 "web_accessible_resources": ["foreground/js/metadata/byte_reader.js"],
213 "app": { 213 "app": {
214 "background": { 214 "background": {
215 "scripts": [ 215 "scripts": [
216 "chrome://resources/js/load_time_data.js", 216 "chrome://resources/js/load_time_data.js",
217 "chrome://resources/js/cr.js", 217 "chrome://resources/js/cr.js",
218 "chrome://resources/js/cr/event_target.js", 218 "chrome://resources/js/cr/event_target.js",
219 "chrome://resources/js/cr/ui/array_data_model.js", 219 "chrome://resources/js/cr/ui/array_data_model.js",
220 "js/util.js", 220 "common/js/async_util.js",
221 "js/path_util.js", 221 "common/js/path_util.js",
222 "js/async_util.js", 222 "common/js/progress_center_common.js",
223 "js/volume_manager.js", 223 "common/js/util.js",
224 "js/file_operation_manager.js", 224 "background/js/volume_manager.js",
225 "js/test_util.js", 225 "background/js/file_operation_manager.js",
226 "js/progress_center_common.js", 226 "background/js/test_util.js",
227 "js/progress_center.js", 227 "background/js/progress_center.js",
228 "js/background.js"] 228 "background/js/background.js"]
229 }, 229 },
230 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension. 230 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension.
231 "content_security_policy": "default-src 'none'; script-src 'self' chrome://r esources chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp; style-src 'self' ' unsafe-inline' chrome://resources; frame-src 'self' about:; img-src 'self' chrom e://resources chrome://theme data: https://docs.google.com https://*.googleuserc ontent.com chrome://extension-icon; media-src 'self' https://*.googleusercontent .com; connect-src https://drive.google.com; object-src 'self'" 231 "content_security_policy": "default-src 'none'; script-src 'self' chrome://r esources chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp; style-src 'self' ' unsafe-inline' chrome://resources; frame-src 'self' about:; img-src 'self' chrom e://resources chrome://theme data: https://docs.google.com https://*.googleuserc ontent.com chrome://extension-icon; media-src 'self' https://*.googleusercontent .com; connect-src https://drive.google.com; object-src 'self'"
232 } 232 }
233 } 233 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/main.html ('k') | chrome/browser/resources/file_manager/mediaplayer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698