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

Unified Diff: chrome/common/extensions/api/developer_private.idl

Issue 22191003: [Apps Developer Tool] Show installation warnings as chrome://extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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/common/extensions/api/developer_private.idl
diff --git a/chrome/common/extensions/api/developer_private.idl b/chrome/common/extensions/api/developer_private.idl
index df4b1cc549f234165fab5f91d848cf96cfd4a539..f78a1d3938fc317ed31da6557a9edb8ab14a54bc 100644
--- a/chrome/common/extensions/api/developer_private.idl
+++ b/chrome/common/extensions/api/developer_private.idl
@@ -26,6 +26,11 @@ namespace developerPrivate {
boolean incognito;
};
+ dictionary InstallWarning {
+ boolean is_html;
+ DOMString message;
+ };
+
dictionary ItemInfo {
DOMString id;
DOMString name;
@@ -54,6 +59,7 @@ namespace developerPrivate {
DOMString? app_launch_url;
DOMString? homepage_url;
DOMString? update_url;
+ InstallWarning[]? install_warnings;
not at google - send to devlin 2013/08/05 14:35:33 code would be simpler if this was non-optional and
zhchbin 2013/08/05 14:54:07 But it seems that chrome://extensions page only sh
not at google - send to devlin 2013/08/05 18:21:23 The effect would be identical, unpacked doesn't co
zhchbin 2013/08/06 02:05:43 Done.
boolean offline_enabled;
// All views of the current extension.

Powered by Google App Engine
This is Rietveld 408576698