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

Side by Side Diff: remoting/webapp/app_remoting/manifest_common.json.jinja2

Issue 1088213004: Remove experimental permission. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« 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 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} 1 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }}
2 "name": "{{APP_NAME}}", 2 "name": "{{APP_NAME}}",
3 "description": "{{APP_DESCRIPTION}}", 3 "description": "{{APP_DESCRIPTION}}",
4 "version": "{{ FULL_APP_VERSION }}", 4 "version": "{{ FULL_APP_VERSION }}",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "default_locale": "en", 6 "default_locale": "en",
7 "app": { 7 "app": {
8 "background": { 8 "background": {
9 "scripts": ["ar_background.js", "platform.js"] 9 "scripts": ["ar_background.js", "platform.js"]
10 } 10 }
11 }, 11 },
12 "icons": { 12 "icons": {
13 "128": "icon128.png", 13 "128": "icon128.png",
14 "48": "icon48.png", 14 "48": "icon48.png",
15 "16": "icon16.png" 15 "16": "icon16.png"
16 }, 16 },
17 "optional_permissions": [ 17 "optional_permissions": [
18 "<all_urls>" 18 "<all_urls>"
19 ], 19 ],
20 "permissions": [ 20 "permissions": [
21 "{{ APP_REMOTING_API_BASE_URL }}/*", 21 "{{ APP_REMOTING_API_BASE_URL }}/*",
22 "{{ DIRECTORY_API_BASE_URL }}/*", 22 "{{ DIRECTORY_API_BASE_URL }}/*",
23 "{{ OAUTH2_ACCOUNTS_HOST }}/*", 23 "{{ OAUTH2_ACCOUNTS_HOST }}/*",
24 "{{ OAUTH2_API_BASE_URL }}/*", 24 "{{ OAUTH2_API_BASE_URL }}/*",
25 "{{ TALK_GADGET_HOST }}/talkgadget/*", 25 "{{ TALK_GADGET_HOST }}/talkgadget/*",
26 "app.window.shape", 26 "app.window.shape",
27 "clipboardRead", 27 "clipboardRead",
28 "clipboardWrite", 28 "clipboardWrite",
29 "contextMenus", 29 "contextMenus",
30 "experimental",
31 "fileSystem", 30 "fileSystem",
32 "fullscreen", 31 "fullscreen",
33 "https://relay.google.com/*", 32 "https://relay.google.com/*",
34 "identity", 33 "identity",
35 "pointerLock", 34 "pointerLock",
36 "storage", 35 "storage",
37 { 36 {
38 "socket": [ 37 "socket": [
39 "udp-send-to", 38 "udp-send-to",
40 "udp-bind", 39 "udp-bind",
(...skipping 10 matching lines...) Expand all
51 }, 50 },
52 "oauth2": { 51 "oauth2": {
53 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", 52 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}",
54 "scopes": [ 53 "scopes": [
55 "https://www.googleapis.com/auth/appremoting.runapplication https://www.go ogleapis.com/auth/googletalk https://www.googleapis.com/auth/userinfo#email http s://www.googleapis.com/auth/userinfo.profile {{ OAUTH_GDRIVE_SCOPE }}" 54 "https://www.googleapis.com/auth/appremoting.runapplication https://www.go ogleapis.com/auth/googletalk https://www.googleapis.com/auth/userinfo#email http s://www.googleapis.com/auth/userinfo.profile {{ OAUTH_GDRIVE_SCOPE }}"
56 ] 55 ]
57 }, 56 },
58 "sandbox": { 57 "sandbox": {
59 "pages": [ "wcs_sandbox.html" ] 58 "pages": [ "wcs_sandbox.html" ]
60 } 59 }
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