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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This features file defines extension APIs implemented under src/chrome. 5 // This features file defines extension APIs implemented under src/chrome.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 // 8 //
9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 "contexts": ["blessed_extension"] 227 "contexts": ["blessed_extension"]
228 }, 228 },
229 "desktopCapture": { 229 "desktopCapture": {
230 "dependencies": ["permission:desktopCapture"], 230 "dependencies": ["permission:desktopCapture"],
231 "contexts": ["blessed_extension"] 231 "contexts": ["blessed_extension"]
232 }, 232 },
233 "developerPrivate": { 233 "developerPrivate": {
234 "dependencies": ["permission:developerPrivate"], 234 "dependencies": ["permission:developerPrivate"],
235 "contexts": ["blessed_extension"] 235 "contexts": ["blessed_extension"]
236 }, 236 },
237 // All devtools APIs are implemented by hand, so don't compile them.
237 "devtools.inspectedWindow": { 238 "devtools.inspectedWindow": {
239 "nocompile": true,
238 "dependencies": ["manifest:devtools_page"], 240 "dependencies": ["manifest:devtools_page"],
239 "contexts": ["blessed_extension"] 241 "contexts": ["blessed_extension"]
240 }, 242 },
241 "devtools.network": { 243 "devtools.network": {
244 "nocompile": true,
242 "dependencies": ["manifest:devtools_page"], 245 "dependencies": ["manifest:devtools_page"],
243 "contexts": ["blessed_extension"] 246 "contexts": ["blessed_extension"]
244 }, 247 },
245 "devtools.panels": { 248 "devtools.panels": {
249 "nocompile": true,
246 "dependencies": ["manifest:devtools_page"], 250 "dependencies": ["manifest:devtools_page"],
247 "contexts": ["blessed_extension"] 251 "contexts": ["blessed_extension"]
248 }, 252 },
249 "diagnostics": { 253 "diagnostics": {
250 "dependencies": ["permission:diagnostics"], 254 "dependencies": ["permission:diagnostics"],
251 "extension_types": ["platform_app"], 255 "extension_types": ["platform_app"],
252 "contexts": ["blessed_extension"] 256 "contexts": ["blessed_extension"]
253 }, 257 },
254 "dial": { 258 "dial": {
255 "dependencies": ["permission:dial"], 259 "dependencies": ["permission:dial"],
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 "internal": true, 705 "internal": true,
702 "channel": "stable", 706 "channel": "stable",
703 "dependencies": ["permission:webview"], 707 "dependencies": ["permission:webview"],
704 "contexts": ["blessed_extension"] 708 "contexts": ["blessed_extension"]
705 }, 709 },
706 "windows": { 710 "windows": {
707 "dependencies": ["api:tabs"], 711 "dependencies": ["api:tabs"],
708 "contexts": ["blessed_extension"] 712 "contexts": ["blessed_extension"]
709 } 713 }
710 } 714 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698