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

Side by Side Diff: chrome/browser/resources/chromeos/genius_app/manifest.json

Issue 188573002: GetHelp: Add missing permission "metricsPrivate" in manifest.json (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | « no previous file | 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 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDNAtiHknM7LHSwE9YKiFFvYvsp0TkfIr iWfrjz53odJD0jEbOtyNhVXqdBOdtcenbSraxt7oJ9GlIfUkvBMP5iOpcrJkYfuNJv8ANHTKC79TjGXR g76TjiqpNI+R2NiVav1pXlzYZpu0ToaiaOcr3IgoGsvIUPcC6pd1U5AjdrCQIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDNAtiHknM7LHSwE9YKiFFvYvsp0TkfIr iWfrjz53odJD0jEbOtyNhVXqdBOdtcenbSraxt7oJ9GlIfUkvBMP5iOpcrJkYfuNJv8ANHTKC79TjGXR g76TjiqpNI+R2NiVav1pXlzYZpu0ToaiaOcr3IgoGsvIUPcC6pd1U5AjdrCQIDAQAB",
3 "manifest_version": 2, 3 "manifest_version": 2,
4 "name": "__MSG_app_name__", 4 "name": "__MSG_app_name__",
5 "description": "__MSG_app_description__", 5 "description": "__MSG_app_description__",
6 "version": "0.2", 6 "version": "0.2",
7 "minimum_chrome_version": "28", 7 "minimum_chrome_version": "28",
8 "default_locale": "en", 8 "default_locale": "en",
9 "incognito" : "split", 9 "incognito" : "split",
10 "icons": { 10 "icons": {
11 "16": "icon/16.png", 11 "16": "icon/16.png",
12 "32": "icon/32.png", 12 "32": "icon/32.png",
13 "48": "icon/48.png", 13 "48": "icon/48.png",
14 "64": "icon/64.png", 14 "64": "icon/64.png",
15 "96": "icon/96.png", 15 "96": "icon/96.png",
16 "128": "icon/128.png", 16 "128": "icon/128.png",
17 "256": "icon/256.png" 17 "256": "icon/256.png"
18 }, 18 },
19 "app": { 19 "app": {
20 "background": { 20 "background": {
21 "persistent": false, 21 "persistent": false,
22 "page": "background.html" 22 "page": "background.html"
23 } 23 }
24 }, 24 },
25 "permissions": [ 25 "permissions": [
26 "identity", 26 "identity",
27 "chromeosInfoPrivate", 27 "chromeosInfoPrivate",
28 "firstRunPrivate", 28 "firstRunPrivate",
29 "management", 29 "management",
30 "metricsPrivate",
30 "webview", 31 "webview",
31 "storage", 32 "storage",
32 "unlimitedStorage", 33 "unlimitedStorage",
33 "https://*.ytimg.com/*", 34 "https://*.ytimg.com/*",
34 "https://www.google.com/*", 35 "https://www.google.com/*",
35 "https://commondatastorage.googleapis.com/*", 36 "https://commondatastorage.googleapis.com/*",
36 "https://storage.googleapis.com/*", 37 "https://storage.googleapis.com/*",
37 "https://www-googleapis-test.sandbox.google.com/*", 38 "https://www-googleapis-test.sandbox.google.com/*",
38 "https://www.googleapis.com/*", 39 "https://www.googleapis.com/*",
39 "https://www.google-analytics.com/" 40 "https://www.google-analytics.com/"
(...skipping 15 matching lines...) Expand all
55 }, 56 },
56 "home": { 57 "home": {
57 "matches": [ 58 "matches": [
58 "https://support.google.com/chromeos-gethelp", 59 "https://support.google.com/chromeos-gethelp",
59 "https://support.google.com/chromeos-gethelp/" 60 "https://support.google.com/chromeos-gethelp/"
60 ], 61 ],
61 "title": "Open Help" 62 "title": "Open Help"
62 } 63 }
63 } 64 }
64 } 65 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698