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

Unified Diff: chrome/test/data/extensions/api_test/messaging/connect/page.js

Issue 14301016: Fix a couple of bugs relating to sending Tab info with chrome.runtime.connect and (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add key to app1/manifest.json Created 7 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/messaging/connect/page.js
diff --git a/chrome/test/data/extensions/api_test/messaging/connect/page.js b/chrome/test/data/extensions/api_test/messaging/connect/page.js
index 7d141f6642e752e991e324e17b67d72fdaee53cb..1e3a7e8eb3dcc68b0c9b3f2f7ba8204ef1819a7a 100644
--- a/chrome/test/data/extensions/api_test/messaging/connect/page.js
+++ b/chrome/test/data/extensions/api_test/messaging/connect/page.js
@@ -85,5 +85,6 @@ function testConnectFromTabError() {
// For test sendMessage.
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
+ chrome.test.assertEq({id: chrome.runtime.id}, sender);
sendResponse({success: (request.step2 == 1)});
});

Powered by Google App Engine
This is Rietveld 408576698