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

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

Issue 691393002: [Smart Lock] Expose the easy_unlock.proximity_required pref via the chrome.preferencesPrivate API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@smart-lock-settings-pref
Patch Set: Update whitelist Created 6 years, 1 month 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
OLDNEW
1 { 1 {
2 "name": "Easy Unlock", 2 "name": "Easy Unlock",
3 "description": "This app sets up unlocking the device with a phone.", 3 "description": "This app sets up unlocking the device with a phone.",
4 "version": "1.0", 4 "version": "1.0",
5 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqOUeUl1nC6qTz6WwVUIaAJ4ukX VzgeCAumX4TZlCHFk5DLHImHLDBxakyVGaQFLS9iEQ3tDTsJLIoA+FkbWKNX7bvDW/qM89CeVNZsIZRG w898m8J78N6dJHwP9aZSI8CpoMK2KvjANpuj1tdWs1OM6v65zRUu6y4Mq876dr5AcPiuznGxl8jekagB wGu8jqMySsJxLazj/EfQ3W1E7mpyHd0Z4C1qNwJoFlUQeMjn6gfPZqa06BLU6YznzCUesiyjFK3d1vzb N54ZkVxhcA6ekwLKYLqKykBFLmIQG0gkNNePzcGXju8p34dGJgkcZw0sOXrtNaLSe1su0zfcniIwIDAQ AB", 5 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqOUeUl1nC6qTz6WwVUIaAJ4ukX VzgeCAumX4TZlCHFk5DLHImHLDBxakyVGaQFLS9iEQ3tDTsJLIoA+FkbWKNX7bvDW/qM89CeVNZsIZRG w898m8J78N6dJHwP9aZSI8CpoMK2KvjANpuj1tdWs1OM6v65zRUu6y4Mq876dr5AcPiuznGxl8jekagB wGu8jqMySsJxLazj/EfQ3W1E7mpyHd0Z4C1qNwJoFlUQeMjn6gfPZqa06BLU6YznzCUesiyjFK3d1vzb N54ZkVxhcA6ekwLKYLqKykBFLmIQG0gkNNePzcGXju8p34dGJgkcZw0sOXrtNaLSe1su0zfcniIwIDAQ AB",
6 6
7 "oauth2": { 7 "oauth2": {
8 "client_id": "383927464186-v05g3e5emhrrblqmpnvq7666jktlpc7q.apps.googleuserc ontent.com", 8 "client_id": "383927464186-v05g3e5emhrrblqmpnvq7666jktlpc7q.apps.googleuserc ontent.com",
9 "auto_approve": true, 9 "auto_approve": true,
10 "scopes": [ 10 "scopes": [
11 "https://www.googleapis.com/auth/proximity_auth", 11 "https://www.googleapis.com/auth/proximity_auth",
12 "https://www.googleapis.com/auth/cryptauth" 12 "https://www.googleapis.com/auth/cryptauth"
13 ] 13 ]
14 }, 14 },
15 15
16 "permissions": [ 16 "permissions": [
17 "bluetoothPrivate", 17 "bluetoothPrivate",
18 "screenlockPrivate", 18 "screenlockPrivate",
19 "feedbackPrivate", 19 "feedbackPrivate",
20 "metricsPrivate", 20 "metricsPrivate",
21 "storage", 21 "storage",
22 "identity", 22 "identity",
23 "notifications", 23 "notifications",
24 "easyUnlockPrivate", 24 "easyUnlockPrivate",
25 "systemPrivate", 25 "systemPrivate",
26 "alarms", 26 "alarms",
27 "gcm", 27 "gcm",
28 "system.display", 28 "system.display",
29 "chromeosInfoPrivate", 29 "chromeosInfoPrivate",
30 "browser" 30 "browser",
31 "preferencesPrivate"
31 ], 32 ],
32 33
33 "app": { 34 "app": {
34 "background": { 35 "background": {
35 "scripts": ["easy_unlock_background.js"] 36 "scripts": ["easy_unlock_background.js"]
36 } 37 }
37 }, 38 },
38 39
39 "bluetooth": { 40 "bluetooth": {
40 "socket" : true, 41 "socket" : true,
(...skipping 10 matching lines...) Expand all
51 52
52 "icons": { 53 "icons": {
53 "32": "icons/easyunlock_app_icon_32.png", 54 "32": "icons/easyunlock_app_icon_32.png",
54 "48": "icons/easyunlock_app_icon_48.png", 55 "48": "icons/easyunlock_app_icon_48.png",
55 "64": "icons/easyunlock_app_icon_64.png", 56 "64": "icons/easyunlock_app_icon_64.png",
56 "96": "icons/easyunlock_app_icon_96.png", 57 "96": "icons/easyunlock_app_icon_96.png",
57 "128": "icons/easyunlock_app_icon_128.png", 58 "128": "icons/easyunlock_app_icon_128.png",
58 "256": "icons/easyunlock_app_icon_256.png" 59 "256": "icons/easyunlock_app_icon_256.png"
59 } 60 }
60 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698