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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 "contexts": ["blessed_extension"] | 327 "contexts": ["blessed_extension"] |
328 }, | 328 }, |
329 "easyUnlockPrivate": { | 329 "easyUnlockPrivate": { |
330 "dependencies": ["permission:easyUnlockPrivate"], | 330 "dependencies": ["permission:easyUnlockPrivate"], |
331 "contexts": ["blessed_extension"] | 331 "contexts": ["blessed_extension"] |
332 }, | 332 }, |
333 "echoPrivate": { | 333 "echoPrivate": { |
334 "dependencies": ["permission:echoPrivate"], | 334 "dependencies": ["permission:echoPrivate"], |
335 "contexts": ["blessed_extension"] | 335 "contexts": ["blessed_extension"] |
336 }, | 336 }, |
| 337 "enterprise.deviceAttributes": { |
| 338 "dependencies": ["permission:enterprise.deviceAttributes"], |
| 339 "contexts": ["blessed_extension"] |
| 340 }, |
337 "enterprise.platformKeys": { | 341 "enterprise.platformKeys": { |
338 "dependencies": ["permission:enterprise.platformKeys"], | 342 "dependencies": ["permission:enterprise.platformKeys"], |
339 "contexts": ["blessed_extension"] | 343 "contexts": ["blessed_extension"] |
340 }, | 344 }, |
341 "enterprise.platformKeysInternal": { | 345 "enterprise.platformKeysInternal": { |
342 "dependencies": ["permission:enterprise.platformKeys"], | 346 "dependencies": ["permission:enterprise.platformKeys"], |
343 "internal": true, | 347 "internal": true, |
344 "contexts": ["blessed_extension"] | 348 "contexts": ["blessed_extension"] |
345 }, | 349 }, |
346 "enterprise.platformKeysPrivate": { | 350 "enterprise.platformKeysPrivate": { |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 "internal": true, | 820 "internal": true, |
817 "channel": "stable", | 821 "channel": "stable", |
818 "dependencies": ["permission:webview"], | 822 "dependencies": ["permission:webview"], |
819 "contexts": ["blessed_extension"] | 823 "contexts": ["blessed_extension"] |
820 }, | 824 }, |
821 "windows": { | 825 "windows": { |
822 "dependencies": ["api:tabs"], | 826 "dependencies": ["api:tabs"], |
823 "contexts": ["blessed_extension"] | 827 "contexts": ["blessed_extension"] |
824 } | 828 } |
825 } | 829 } |
OLD | NEW |