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

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

Issue 8488012: Fix for management API related to escalated permissions disabled extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased again Created 9 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
« no previous file with comments | « chrome/common/extensions/docs/management.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 122336283ae8fe5a76ebfe7d667f572f922219af..5ad7ff713d65e07299002a04a42a8b73dd5f8f5b 100644
--- a/chrome/test/data/extensions/api_test/management/test/basics.js
+++ b/chrome/test/data/extensions/api_test/management/test/basics.js
@@ -54,11 +54,13 @@ var tests = [
{ "appLaunchUrl": "http://www.google.com/",
"offlineEnabled": true,
"updateUrl": "http://example.com/update.xml" });
- checkItemInList(items, "disabled_app", false, true);
+ checkItemInList(items, "disabled_app", false, true,
+ { "disabledReason": "unknown" });
checkItemInList(items, "enabled_extension", true, false,
{ "homepageUrl": "http://example.com/" });
checkItemInList(items, "disabled_extension", false, false,
- { "optionsUrl": "chrome-extension://<ID>/pages/options.html" });
+ { "optionsUrl": "chrome-extension://<ID>/pages/options.html",
+ "disabledReason": "unknown" });
// Check that we got the icons correctly
var extension = getItemNamed(items, "enabled_extension");
« no previous file with comments | « chrome/common/extensions/docs/management.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698