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

Unified Diff: chrome/test/data/extensions/manifest_tests/externally_connectable_error_tld.json

Issue 15862011: Restrict the externally_connectable manifest key to effectively a single origin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: yoz Created 7 years, 7 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/manifest_tests/externally_connectable_error_tld.json
diff --git a/chrome/test/data/extensions/manifest_tests/externally_connectable_error_tld.json b/chrome/test/data/extensions/manifest_tests/externally_connectable_error_tld.json
new file mode 100644
index 0000000000000000000000000000000000000000..081cbf15302063c36bb8cebd7bbf95613e5db252
--- /dev/null
+++ b/chrome/test/data/extensions/manifest_tests/externally_connectable_error_tld.json
@@ -0,0 +1,12 @@
+{
+ "name": "unit_tests --gtest_filter=ExternallyConnectableTest.ErrorTLD",
+ "version": "1",
+ "manifest_version": 2,
+ "externally_connectable": {
+ "matches": [
+ "*://example.com/*",
+ "http://*.co.uk/*",
+ "http://build.chromium.org/*"
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698