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

Unified Diff: chrome/common/extensions/api/_api_features.json

Issue 850603003: Add a 'nocompile' option to Extension feature files, and annotate all Devtools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: oops Created 5 years, 11 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/_api_features.json
diff --git a/chrome/common/extensions/api/_api_features.json b/chrome/common/extensions/api/_api_features.json
index 90b1befc9de9ba7b1061a203c84d792d20d7dd7c..b5520540db4393fc027f8d22accc1352f4b6d57b 100644
--- a/chrome/common/extensions/api/_api_features.json
+++ b/chrome/common/extensions/api/_api_features.json
@@ -234,15 +234,19 @@
"dependencies": ["permission:developerPrivate"],
"contexts": ["blessed_extension"]
},
+ // All devtools APIs are implemented by hand, so don't compile them.
"devtools.inspectedWindow": {
+ "nocompile": true,
"dependencies": ["manifest:devtools_page"],
"contexts": ["blessed_extension"]
},
"devtools.network": {
+ "nocompile": true,
"dependencies": ["manifest:devtools_page"],
"contexts": ["blessed_extension"]
},
"devtools.panels": {
+ "nocompile": true,
"dependencies": ["manifest:devtools_page"],
"contexts": ["blessed_extension"]
},

Powered by Google App Engine
This is Rietveld 408576698