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

Unified Diff: chrome/test/data/extensions/api_test/accessible_cer/manifest.json

Issue 9909019: Add schema chrome-extension-resource:// for extension resources (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add tests Created 8 years, 8 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/api_test/accessible_cer/manifest.json
diff --git a/chrome/test/data/extensions/api_test/accessible_cer/manifest.json b/chrome/test/data/extensions/api_test/accessible_cer/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..6776691a96d1ed85df7ef60fbbc48dfcefb71063
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/accessible_cer/manifest.json
@@ -0,0 +1,20 @@
+{
+ "name": "Access chrome-extension-resource:// test",
+ "version": "0.1",
+ "manifest_version": 2,
Aaron Boodman 2012/04/16 18:56:15 We should make the default security policy for man
Peng 2012/04/17 13:52:05 Done.
+ "description": "Access chrome-extension-resource:// test",
+ "platform_app": true,
+ "app": {
+ "launch": {
+ "container": "shell",
+ "local_path": "main.html",
+ "width": 100,
+ "height": 100
+ }
+ },
+ "permissions": [
+ "experimental",
+ "chrome-extension-resource://analytics"
Aaron Boodman 2012/04/16 18:54:36 We don't need a permission for this. Also, perhaps
Aaron Boodman 2012/04/16 18:56:15 Actually, I don't see this getting checked anywher
Peng 2012/04/17 13:52:05 Done.
+ ],
+ "content_security_policy": "script-src 'self' chrome-extension-resource://analytics; object-src 'self'"
+}

Powered by Google App Engine
This is Rietveld 408576698