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

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

Issue 709933002: Add frameId to MessageSender (extension messaging API) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test: sender.tab.status = 'complete' Created 6 years, 1 month 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/messaging/connect/manifest.json
diff --git a/chrome/test/data/extensions/api_test/messaging/connect/manifest.json b/chrome/test/data/extensions/api_test/messaging/connect/manifest.json
index 0fa4c590a28963da7dada6499c6f4d8ff50b6d09..abb898b8f03d2def83935310960c9afe754b927c 100644
--- a/chrome/test/data/extensions/api_test/messaging/connect/manifest.json
+++ b/chrome/test/data/extensions/api_test/messaging/connect/manifest.json
@@ -3,7 +3,7 @@
"version": "1.0",
"manifest_version": 2,
"description": "Tests connect from a content script.",
- "permissions": ["tabs"],
+ "permissions": ["tabs", "webNavigation"],
"background": {
"persistent": false,
"scripts": ["test.js"]
@@ -12,6 +12,11 @@
{
"matches": ["http://*/*"],
"js": ["page.js"]
+ },
+ {
+ "all_frames": true,
+ "matches": ["http://*/*?testSendMessageFromFrame*"],
+ "js": ["frame.js"]
}
]
}

Powered by Google App Engine
This is Rietveld 408576698