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

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

Issue 10916305: Move shared file type images into chrome://theme/ scheme (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix android build Created 8 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
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 "name": "Files", 4 "name": "Files",
5 "version": "0.1", 5 "version": "0.1",
6 "description": "File Manager", 6 "description": "File Manager",
7 "incognito" : "split", 7 "incognito" : "split",
8 "icons": { 8 "icons": {
9 "16": "images/icon16.png", 9 "16": "images/icon16.png",
10 "128": "images/icon128.png" 10 "128": "images/icon128.png"
11 }, 11 },
12 "permissions": [ 12 "permissions": [
13 "fileBrowserHandler", 13 "fileBrowserHandler",
14 "fileBrowserPrivate", 14 "fileBrowserPrivate",
15 "mediaPlayerPrivate", 15 "mediaPlayerPrivate",
16 "metricsPrivate", 16 "metricsPrivate",
17 "unlimitedStorage", 17 "unlimitedStorage",
18 "chrome://extension-icon/", 18 "chrome://extension-icon/",
19 "chrome://resources/", 19 "chrome://resources/",
20 "chrome://theme/",
20 "tabs", 21 "tabs",
21 "clipboardWrite", 22 "clipboardWrite",
22 "clipboardRead", 23 "clipboardRead",
23 "https://*.googleusercontent.com/" 24 "https://*.googleusercontent.com/"
24 ], 25 ],
25 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' chrome://resource s data: https://docs.google.com https://*.googleusercontent.com chrome://extensi on-icon; media-src 'self' https://*.googleusercontent.com;", 26 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' chrome://resource s chrome://theme data: https://docs.google.com https://*.googleusercontent.com c hrome://extension-icon; media-src 'self' https://*.googleusercontent.com;",
26 "app": { 27 "app": {
27 "launch": { 28 "launch": {
28 "container": "panel", 29 "container": "panel",
29 "local_path": "main.html" 30 "local_path": "main.html"
30 } 31 }
31 }, 32 },
32 "file_browser_handlers": [ 33 "file_browser_handlers": [
33 { 34 {
34 "id": "play", 35 "id": "play",
35 "default_title": "__MSG_PLAY_MEDIA__", 36 "default_title": "__MSG_PLAY_MEDIA__",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 "files": "main.html" 173 "files": "main.html"
173 }, 174 },
174 "background": { 175 "background": {
175 "transient": true, 176 "transient": true,
176 "persistent": false, 177 "persistent": false,
177 "scripts": ["js/file_copy_manager.js", 178 "scripts": ["js/file_copy_manager.js",
178 "js/path_util.js", 179 "js/path_util.js",
179 "js/util.js"] 180 "js/util.js"]
180 } 181 }
181 } 182 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | chrome/browser/resources/file_manager/video_player.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698