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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/manifest/offline_enabled.html

Issue 181233007: kiosk: Fix network check skipped regression. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win compile 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 <h1 id="offline_enabled">Manifest - Offline Enabled</h1> 1 <h1 id="offline_enabled">Manifest - Offline Enabled</h1>
2 2
3 <p> 3 <p>
4 Whether the app or extension is expected to work offline. When Chrome detects 4 Whether the app or extension is expected to work offline. When Chrome detects
5 that it is offline, apps with this field set to true will be highlighted 5 that it is offline, apps with this field set to true will be highlighted
6 on the New Tab page. 6 on the New Tab page.
7 </p> 7 </p>
8
9 <p>
10 As of Chrome 35, apps are assumed to be offline enabled and the default value
11 of <code>"offline_enabled"</code> is <code>true</code> unless <code>"webview"</c ode>
12 permission is requested. In this case, network connectivity is assumed to be
13 required and <code>"offline_enabled"</code> defaults to <code>false</code>.
14 </p>
15
16 <p>
17 The <code>"offline_enabled"</code> value is also used to determine whether a
18 network connectivity check will be performed when launching an app in <a href="/ apps/manifest/kiosk_enabled">
19 ChromeOS kiosk mode</a>. A network connectivity check will be performed when
20 apps are not offline enabled, and app launching put on hold until the device
21 obtains connectivity to the Internet.
22 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698