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

Side by Side Diff: chrome/common/extensions/api/_api_features.json

Issue 291493002: Remove "platform_app" restriction of experimental.devtools APIs. It didn't (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 }, 312 },
313 "events": { 313 "events": {
314 "internal": true, 314 "internal": true,
315 "channel": "stable", 315 "channel": "stable",
316 "extension_types": ["platform_app", "extension"], 316 "extension_types": ["platform_app", "extension"],
317 "contexts": "all", 317 "contexts": "all",
318 "matches": ["<all_urls>"] 318 "matches": ["<all_urls>"]
319 }, 319 },
320 "experimental.devtools.audits": { 320 "experimental.devtools.audits": {
321 "dependencies": ["permission:experimental", "manifest:devtools_page"], 321 "dependencies": ["permission:experimental", "manifest:devtools_page"],
322 "extension_types": ["platform_app"],
323 "contexts": ["blessed_extension"] 322 "contexts": ["blessed_extension"]
324 }, 323 },
325 "experimental.devtools.console": { 324 "experimental.devtools.console": {
326 "dependencies": ["permission:experimental", "manifest:devtools_page"], 325 "dependencies": ["permission:experimental", "manifest:devtools_page"],
327 "extension_types": ["platform_app"],
328 "contexts": ["blessed_extension"] 326 "contexts": ["blessed_extension"]
329 }, 327 },
330 "extension": { 328 "extension": {
331 "channel": "stable", 329 "channel": "stable",
332 "extension_types": ["extension", "legacy_packaged_app"], 330 "extension_types": ["extension", "legacy_packaged_app"],
333 "contexts": ["blessed_extension"] 331 "contexts": ["blessed_extension"]
334 }, 332 },
335 "extension.getURL": { 333 "extension.getURL": {
336 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 334 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
337 }, 335 },
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 "internal": true, 776 "internal": true,
779 "channel": "stable", 777 "channel": "stable",
780 "dependencies": ["permission:webview"], 778 "dependencies": ["permission:webview"],
781 "contexts": ["blessed_extension"] 779 "contexts": ["blessed_extension"]
782 }, 780 },
783 "windows": { 781 "windows": {
784 "dependencies": ["api:tabs"], 782 "dependencies": ["api:tabs"],
785 "contexts": ["blessed_extension"] 783 "contexts": ["blessed_extension"]
786 } 784 }
787 } 785 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698