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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/articles/manifest/offline_enabled.html
diff --git a/chrome/common/extensions/docs/templates/articles/manifest/offline_enabled.html b/chrome/common/extensions/docs/templates/articles/manifest/offline_enabled.html
index d9a5638bc39463fb3fb19148bd913c3624b0b308..a3d803b88e3dd765aabaf553704bdd1d3d8d0ef2 100644
--- a/chrome/common/extensions/docs/templates/articles/manifest/offline_enabled.html
+++ b/chrome/common/extensions/docs/templates/articles/manifest/offline_enabled.html
@@ -5,3 +5,18 @@ Whether the app or extension is expected to work offline. When Chrome detects
that it is offline, apps with this field set to true will be highlighted
on the New Tab page.
</p>
+
+<p>
+As of Chrome 35, apps are assumed to be offline enabled and the default value
+of <code>"offline_enabled"</code> is <code>true</code> unless <code>"webview"</code>
+permission is requested. In this case, network connectivity is assumed to be
+required and <code>"offline_enabled"</code> defaults to <code>false</code>.
+</p>
+
+<p>
+The <code>"offline_enabled"</code> value is also used to determine whether a
+network connectivity check will be performed when launching an app in <a href="/apps/manifest/kiosk_enabled">
+ChromeOS kiosk mode</a>. A network connectivity check will be performed when
+apps are not offline enabled, and app launching put on hold until the device
+obtains connectivity to the Internet.
+</p>

Powered by Google App Engine
This is Rietveld 408576698