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

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

Issue 13775006: Fixed web workers in Files.app v2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/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 { 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 "default_title": "__MSG_HOSTED__", 176 "default_title": "__MSG_HOSTED__",
177 "default_icon": "images/filetype_generic.png", 177 "default_icon": "images/filetype_generic.png",
178 "file_filters": [ 178 "file_filters": [
179 "filesystem:*.gslides" 179 "filesystem:*.gslides"
180 ] 180 ]
181 } 181 }
182 ], 182 ],
183 "chrome_url_overrides": { 183 "chrome_url_overrides": {
184 "files": "main.html" 184 "files": "main.html"
185 }, 185 },
186 // Required to import scripts in a web worker. Note, that in Apps v2, it is
187 // enough that anything is passed to web_accessible_resources. If there is
188 // at least any file, then all files are allowed. http://crbug.com/179127.
189 "web_accessible_resources": ["js/metadata/byte_reader.js"],
186 "app": { 190 "app": {
187 "background": { 191 "background": {
188 "scripts": [ 192 "scripts": [
189 "js/file_copy_manager.js", 193 "js/file_copy_manager.js",
190 "js/path_util.js", 194 "js/path_util.js",
191 "js/util.js", 195 "js/util.js",
192 "js/background.js"] 196 "js/background.js"]
193 }, 197 },
194 "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' chrome://resour ces chrome://theme data: https://docs.google.com https://*.googleusercontent.com chrome://extension-icon; media-src 'self' https://*.googleusercontent.com; conn ect-src https://drive.google.com" 198 "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' chrome://resour ces chrome://theme data: https://docs.google.com https://*.googleusercontent.com chrome://extension-icon; media-src 'self' https://*.googleusercontent.com; conn ect-src https://drive.google.com"
195 } 199 }
196 } 200 }
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