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

Unified Diff: chrome/test/data/extensions/platform_apps/web_view/shim/manifest.json

Issue 22793018: <webview>: Implement support for package-local chrome-extension:// URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a test to verify that a privileged partition can access a local resource Created 7 years, 3 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/test/data/extensions/platform_apps/web_view/shim/manifest.json
diff --git a/chrome/test/data/extensions/platform_apps/web_view/shim/manifest.json b/chrome/test/data/extensions/platform_apps/web_view/shim/manifest.json
index d0ca5bc11241ec66312fef3fb49d5921d4a8a0da..49b5764e0512faf156eb238c510e99d6c53d3ef0 100644
--- a/chrome/test/data/extensions/platform_apps/web_view/shim/manifest.json
+++ b/chrome/test/data/extensions/platform_apps/web_view/shim/manifest.json
@@ -1,6 +1,6 @@
{
"name": "Platform App Test: <webview>",
- "version": "1",
+ "version": "2",
"permissions": [
"webview"
],
@@ -8,5 +8,11 @@
"background": {
"scripts": ["test.js"]
}
- }
+ },
+ "webview_accessible_resources": [
+ "guest.html"
+ ],
+ "webview_privileged_partitions": [
+ "foobar"
+ ]
}

Powered by Google App Engine
This is Rietveld 408576698