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

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

Issue 150663013: Integrate ErrorConsole with Apps Dev Tool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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 c16f22c41ca0a043792e4c19236b8addbeae5f78..5abcb9d80cefd0db91358c558133ccb092d907b9 100644
--- a/chrome/common/extensions/api/developer_private.idl
+++ b/chrome/common/extensions/api/developer_private.idl
@@ -60,6 +60,8 @@ namespace developerPrivate {
DOMString? homepage_url;
DOMString? update_url;
InstallWarning[] install_warnings;
+ any[] manifest_errors;
+ any[] runtime_errors;
boolean offline_enabled;
// All views of the current extension.
@@ -97,7 +99,8 @@ namespace developerPrivate {
// New window / view opened.
VIEW_REGISTERED,
// window / view closed.
- VIEW_UNREGISTERED
+ VIEW_UNREGISTERED,
+ ERROR_ADDED
};
dictionary PackDirectoryResponse {
@@ -131,6 +134,7 @@ namespace developerPrivate {
callback PathCallback = void (DOMString path);
callback PackCallback = void (PackDirectoryResponse response);
callback VoidCallback = void();
+ callback AnyCallback = void (any result);
interface Functions {
// Runs auto update for extensions and apps immediately.
@@ -202,6 +206,9 @@ namespace developerPrivate {
// Returns true if the profile is managed.
static void isProfileManaged(BooleanCallback callback);
+
+ static void requestFileSource(any dict, AnyCallback callback);
+ static void openDevTools(any dict);
};
interface Events {

Powered by Google App Engine
This is Rietveld 408576698