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

Unified Diff: chrome/test/data/extensions/api_test/management/test/basics.js

Issue 294903007: Changed host and NPAPI extension permission strings (access -> read and modify), updated unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Syntax error fix, specific test now passes Created 6 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/api_test/management/test/basics.js
diff --git a/chrome/test/data/extensions/api_test/management/test/basics.js b/chrome/test/data/extensions/api_test/management/test/basics.js
index 78c7a6e814d65bebb5e958340e637fae0ca5bccd..48fde00ef3420be366187e9980b732c8208059e8 100644
--- a/chrome/test/data/extensions/api_test/management/test/basics.js
+++ b/chrome/test/data/extensions/api_test/management/test/basics.js
@@ -110,7 +110,8 @@ var tests = [
// Warning for "tabs" is suppressed by "history" permission.
chrome.test.assertEq(4, warnings.length);
chrome.test.assertEq(
- "Access your data on *.flickr.com and api.flickr.com", warnings[0]);
+ "Read and modify your data on *.flickr.com and api.flickr.com",
+ warnings[0]);
chrome.test.assertEq("Read and modify your bookmarks", warnings[1]);
chrome.test.assertEq("Detect your physical location", warnings[2]);
chrome.test.assertEq("Read and modify your browsing history",

Powered by Google App Engine
This is Rietveld 408576698