OLD | NEW |
---|---|
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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
269 "downloadsInternal": { | 269 "downloadsInternal": { |
270 "internal": true, | 270 "internal": true, |
271 "channel": "stable", | 271 "channel": "stable", |
272 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 272 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
273 }, | 273 }, |
274 "echoPrivate": { | 274 "echoPrivate": { |
275 "platforms": ["chromeos"], | 275 "platforms": ["chromeos"], |
276 "dependencies": ["permission:echoPrivate"], | 276 "dependencies": ["permission:echoPrivate"], |
277 "contexts": ["blessed_extension"] | 277 "contexts": ["blessed_extension"] |
278 }, | 278 }, |
279 "enterprise.platformKeys": { | |
280 "channel": "dev", | |
not at google - send to devlin
2014/05/02 18:31:56
this rule should be in the permission file. restri
pneubeck (no reviews)
2014/05/05 20:09:35
Done.
| |
281 "platforms": ["chromeos"], | |
282 "dependencies": ["permission:enterprise.platformKeys"], | |
283 "contexts": ["blessed_extension"] | |
284 }, | |
285 "enterprise.platformKeysInternal": { | |
286 "channel": "dev", | |
287 "platforms": ["chromeos"], | |
288 "dependencies": ["permission:enterprise.platformKeys"], | |
289 "internal": true, | |
290 "contexts": ["blessed_extension"] | |
291 }, | |
279 "enterprise.platformKeysPrivate": { | 292 "enterprise.platformKeysPrivate": { |
280 "platforms": ["chromeos"], | 293 "platforms": ["chromeos"], |
281 "dependencies": ["permission:enterprise.platformKeysPrivate"], | 294 "dependencies": ["permission:enterprise.platformKeysPrivate"], |
282 "contexts": ["blessed_extension"] | 295 "contexts": ["blessed_extension"] |
283 }, | 296 }, |
284 "events": { | 297 "events": { |
285 "internal": true, | 298 "internal": true, |
286 "channel": "stable", | 299 "channel": "stable", |
287 "extension_types": ["platform_app", "extension"], | 300 "extension_types": ["platform_app", "extension"], |
288 "contexts": "all", | 301 "contexts": "all", |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
797 "internal": true, | 810 "internal": true, |
798 "channel": "stable", | 811 "channel": "stable", |
799 "dependencies": ["permission:webview"], | 812 "dependencies": ["permission:webview"], |
800 "contexts": ["blessed_extension"] | 813 "contexts": ["blessed_extension"] |
801 }, | 814 }, |
802 "windows": { | 815 "windows": { |
803 "dependencies": ["api:tabs"], | 816 "dependencies": ["api:tabs"], |
804 "contexts": ["blessed_extension"] | 817 "contexts": ["blessed_extension"] |
805 } | 818 } |
806 } | 819 } |
OLD | NEW |