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> |