--
You received this message because you are subscribed to the Google Groups "Chromium Apps" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-app...@chromium.org.
To post to this group, send email to chromi...@chromium.org.
Visit this group at http://groups.google.com/a/chromium.org/group/chromium-apps/.
For more options, visit https://groups.google.com/a/chromium.org/d/optout.
Sorry, I don't know why I missed your first emails.Yes, you need to add "unlimitedStorage" permission in the manifest file. Did you set partition = "persist:XXX"for the webview tag?Regards,Xi
Hi Mac,yes, only when you set the partition of a webview as persistent, it will request quota for persistent storage.In the manifest, add:"webview": { "partitions": [ { "name": "a" } ] },When create the webview tag, try:<webview id="foo" src="http://www.google.com/" style="width:640px; height:480px" partition="persist:a"></webview>Try to see whether it works.Regards,Xi