| 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 manifest keys implemented under src/chrome. | 5 // This features file defines manifest keys 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 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
| 10 // | 10 // |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 }, | 32 }, |
| 33 "app.launch": { | 33 "app.launch": { |
| 34 "channel": "stable", | 34 "channel": "stable", |
| 35 "extension_types": ["legacy_packaged_app", "hosted_app"] | 35 "extension_types": ["legacy_packaged_app", "hosted_app"] |
| 36 }, | 36 }, |
| 37 "author": { | 37 "author": { |
| 38 "channel": "stable", | 38 "channel": "stable", |
| 39 "extension_types": "all" | 39 "extension_types": "all" |
| 40 }, | 40 }, |
| 41 "automation": { | 41 "automation": { |
| 42 "channel": "trunk", | 42 "channel": "dev", |
| 43 "extension_types": ["extension", "legacy_packaged_app"] | 43 "extension_types": ["extension", "legacy_packaged_app"] |
| 44 }, | 44 }, |
| 45 "bluetooth": [{ | 45 "bluetooth": [{ |
| 46 // Note: The "bluetooth" manifest permission is used by the | 46 // Note: The "bluetooth" manifest permission is used by the |
| 47 // chrome.bluetooth, chrome.bluetoothSocket and chrome.bluetoothLowEnergy | 47 // chrome.bluetooth, chrome.bluetoothSocket and chrome.bluetoothLowEnergy |
| 48 // APIs. | 48 // APIs. |
| 49 "channel": "stable", | 49 "channel": "stable", |
| 50 "extension_types": ["platform_app"], | 50 "extension_types": ["platform_app"], |
| 51 "platforms": ["chromeos", "win", "mac"] | 51 "platforms": ["chromeos", "win", "mac"] |
| 52 }, { | 52 }, { |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 }, | 403 }, |
| 404 "url_handlers": { | 404 "url_handlers": { |
| 405 "channel": "stable", | 405 "channel": "stable", |
| 406 "extension_types": ["platform_app"] | 406 "extension_types": ["platform_app"] |
| 407 }, | 407 }, |
| 408 "version": { | 408 "version": { |
| 409 "channel": "stable", | 409 "channel": "stable", |
| 410 "extension_types": "all" | 410 "extension_types": "all" |
| 411 } | 411 } |
| 412 } | 412 } |
| OLD | NEW |