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

Side by Side Diff: native_client_sdk/src/examples/resources/manifest.json.template

Issue 14500010: [NaCl SDK] Google Drive example (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 7 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "Native Client SDK", 2 "name": "Native Client SDK",
3 "version": "{{version}}", 3 "version": "{{version}}",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "description": "Native Client SDK examples, showing API use and key concepts." , 5 "description": "Native Client SDK examples, showing API use and key concepts." ,
6 "offline_enabled": true, 6 "offline_enabled": true,
7 "icons": { 7 "icons": {
8 "128": "icon128.png" 8 "128": "icon128.png"
9 }, 9 },
10 "app": { 10 "app": {
11 "background": { 11 "background": {
12 "scripts": ["background.js"] 12 "scripts": ["background.js"]
13 } 13 }
14 }, 14 },
15 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCMN716Qyu0l2EHNFqIJVqVysFcTR6urq haGGqW4UK7slBaURz9+Sb1b4Ot5P1uQNE5c+CTU5Vu61wpqmSqMMxqHLWdPPMh8uRlyctsb2cxWwG6Xo GSvpX29NsQVUFXd4v2tkJm3G9t+V0X8TYskrvWQmnyOW8OEIDvrBhUEfFxWQIDAQAB",
16 "oauth2": {
17 "client_id": "903965034255.apps.googleusercontent.com",
18 "scopes": ["https://www.googleapis.com/auth/drive"]
19 },
15 "permissions": [ 20 "permissions": [
21 "experimental",
16 "fullscreen", 22 "fullscreen",
23 "https://*.googleusercontent.com/*",
24 "https://www.googleapis.com/*/drive/*",
17 "pointerLock", 25 "pointerLock",
18 "unlimitedStorage" 26 "unlimitedStorage"
19 ] 27 ]
20 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698