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

Side by Side Diff: chrome/test/data/chromeos/app_mode/kiosk_test_app/src/manifest.json

Issue 181233007: kiosk: Fix network check skipped regression. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: offline_enabled default value from webview permission 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
OLDNEW
1 { 1 {
2 "manifest_version": 2, 2 "manifest_version": 2,
3 "name": "Test Kiosk App", 3 "name": "Test Kiosk App",
4 "minimum_chrome_version": "24.0.1307.0",
5 "version": "1.0.0", 4 "version": "1.0.0",
6 "icons": { 5 "icons": {
7 "128": "icon-128.png", 6 "128": "icon-128.png",
8 "16": "icon-16.png" 7 "16": "icon-16.png"
9 }, 8 },
10 "app": { 9 "app": {
11 "background": { 10 "background": {
12 "scripts": ["main.js"] 11 "scripts": ["main.js"]
13 } 12 }
14 }, 13 },
15 "kiosk_enabled": true, 14 "kiosk_enabled": true,
16 "permissions": [ 15 "permissions": [
17 "power" 16 "power",
17 "webview"
18 ] 18 ]
19 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698