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

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

Issue 1085113002: [Extensions UI] Use developerPrivate API for repair, options, show path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/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 1074ec0b01f5d7af2884b6ffd95c5456d2c6dab2..3d964babc925f8c282e96c86b02b098cf8b58186 100644
--- a/chrome/common/extensions/api/developer_private.idl
+++ b/chrome/common/extensions/api/developer_private.idl
@@ -498,6 +498,20 @@ namespace developerPrivate {
DeleteExtensionErrorsProperties properties,
optional VoidCallback callback);
+ // Repairs the extension specified.
+ // | extensionId | : The id of the extension to repair.
not at google - send to devlin 2015/04/16 17:33:25 Should be |extensionId| not | extensionId |, could
Devlin 2015/04/16 17:59:12 Done. I keep forgetting if it's the || that need a
+ static void repairExtension(DOMString extensionId,
+ optional VoidCallback callback);
+
+ // Shows the options page for the extension specified.
+ // | extensionId | : The id of the extension to show the options page for.
+ static void showOptions(DOMString extensionId,
+ optional VoidCallback callback);
+
+ // Shows the path of the extension specified.
+ // | extensionId | : The id of the extension to show the path for.
+ static void showPath(DOMString extensionId, optional VoidCallback callback);
+
[nocompile, deprecated="Use management.setEnabled"]
static void enable(DOMString id,
boolean enabled,

Powered by Google App Engine
This is Rietveld 408576698