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

Unified Diff: chrome/test/data/extensions/api_test/executescript/basic/test.js

Issue 1414223005: Remove URLs from chrome.tabs.executeScript permission warning. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/executescript/basic/test.js
diff --git a/chrome/test/data/extensions/api_test/executescript/basic/test.js b/chrome/test/data/extensions/api_test/executescript/basic/test.js
index 39102cefc260f6374cf9fc7975a2446375fa5039..7589af2fcf3164e036469888c6ebd8c77da23e36 100644
--- a/chrome/test/data/extensions/api_test/executescript/basic/test.js
+++ b/chrome/test/data/extensions/api_test/executescript/basic/test.js
@@ -92,9 +92,9 @@ chrome.test.getConfig(function(config) {
var script_file = {};
script_file.code = "document.title = 'executeScript';";
chrome.tabs.executeScript(tabId, script_file, fail(
- 'Cannot access contents of url "' + testFailureUrl +
- '". Extension manifest must request permission to access this ' +
- 'host.'));
+ 'Cannot access contents of a page. ' +
+ 'Extension manifest must request permission to access the ' +
+ 'respective host.'));
});
},

Powered by Google App Engine
This is Rietveld 408576698