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

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

Issue 10378118: [Chrome OS ECHO]: Update CSP for using the production Google API access point. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 7 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
« 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 // chrome-extension://dfgpjpjbeeflfdhdpabeeeheghdmeigc 2 // chrome-extension://dfgpjpjbeeflfdhdpabeeeheghdmeigc
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzzB6c4Z0cusW6trA/issIOyMaxXtPfM YQclO0Dg5rOrS8SZLOAio0G4TpYDvY8z/BPdAH3a1BOSeetey8tBSdcIhOoYpqN3i9yIFuZVwHuOt83A WnJrxinVUpY05HtTblopGvGtQNlCR5crMdG+uc2yI3NlPOFZVDrFXtOv/LXQIDAQAB", 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzzB6c4Z0cusW6trA/issIOyMaxXtPfM YQclO0Dg5rOrS8SZLOAio0G4TpYDvY8z/BPdAH3a1BOSeetey8tBSdcIhOoYpqN3i9yIFuZVwHuOt83A WnJrxinVUpY05HtTblopGvGtQNlCR5crMdG+uc2yI3NlPOFZVDrFXtOv/LXQIDAQAB",
4 "name": "Chrome OS ECHO Extension", 4 "name": "Chrome OS ECHO Extension",
5 "version": "0.0.2", 5 "version": "0.0.2",
6 "description": "Chrome OS ECHO Extension", 6 "description": "Chrome OS ECHO Extension",
7 // TODO(gauravsh): Get rid of https://www-googleapis-test.sandbox.google.com o nce
8 // production service is up and running. crosbug.com/29809
9 "manifest_version": 2, 7 "manifest_version": 2,
10 "content_security_policy": "default-src 'self'; script-src 'self' https://apis .google.com; frame-src 'self' https://www.googleapis.com https://www-googleapis- test.sandbox.google.com;", 8 "content_security_policy": "default-src 'self'; script-src 'self' https://apis .google.com; frame-src 'self' https://chromeos-registration.googleapis.com",
11 "permissions": [ 9 "permissions": [
12 "cookies", 10 "cookies",
13 "echoPrivate", 11 "echoPrivate",
14 "https://*/*" 12 "https://*/*"
15 ], 13 ],
16 "default_locale": "en", 14 "default_locale": "en",
17 "web_accessible_resources": [ 15 "web_accessible_resources": [
18 "main.html", 16 "main.html",
19 "main.js" 17 "main.js"
20 ], 18 ],
21 "intents": { 19 "intents": {
22 "https://crosecho.com/startEcho": [{ 20 "https://crosecho.com/startEcho": [{
23 "type" : ["application/vnd.chromeos.echo"], 21 "type" : ["application/vnd.chromeos.echo"],
24 "title" : "Initiate Chrome OS ECHO", 22 "title" : "Initiate Chrome OS ECHO",
25 "path" : "main.html", 23 "path" : "main.html",
26 "disposition" : "inline" 24 "disposition" : "inline"
27 }] 25 }]
28 } 26 }
29 } 27 }
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