| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/extensions. | 5 // This features file defines extension APIs implemented under src/extensions. |
| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "chrome://bluetooth-pairing/*", | 96 "chrome://bluetooth-pairing/*", |
| 97 "chrome://md-settings/*", | 97 "chrome://md-settings/*", |
| 98 "chrome://settings/*", | 98 "chrome://settings/*", |
| 99 "chrome://settings-frame/*" | 99 "chrome://settings-frame/*" |
| 100 ] | 100 ] |
| 101 }], | 101 }], |
| 102 "bluetoothLowEnergy": { | 102 "bluetoothLowEnergy": { |
| 103 "dependencies": ["manifest:bluetooth"], | 103 "dependencies": ["manifest:bluetooth"], |
| 104 "contexts": ["blessed_extension"] | 104 "contexts": ["blessed_extension"] |
| 105 }, | 105 }, |
| 106 "bluetoothLowEnergy.createService": { |
| 107 "dependencies": ["manifest:bluetooth"], |
| 108 "contexts": ["blessed_extension"], |
| 109 "platforms": ["chromeos", "linux"] |
| 110 }, |
| 111 "bluetoothLowEnergy.createCharacteristic": { |
| 112 "dependencies": ["manifest:bluetooth"], |
| 113 "contexts": ["blessed_extension"], |
| 114 "platforms": ["chromeos", "linux"] |
| 115 }, |
| 116 "bluetoothLowEnergy.createDescriptor": { |
| 117 "dependencies": ["manifest:bluetooth"], |
| 118 "contexts": ["blessed_extension"], |
| 119 "platforms": ["chromeos", "linux"] |
| 120 }, |
| 121 "bluetoothLowEnergy.registerService": { |
| 122 "dependencies": ["manifest:bluetooth"], |
| 123 "contexts": ["blessed_extension"], |
| 124 "platforms": ["chromeos", "linux"] |
| 125 }, |
| 126 "bluetoothLowEnergy.unregisterService": { |
| 127 "dependencies": ["manifest:bluetooth"], |
| 128 "contexts": ["blessed_extension"], |
| 129 "platforms": ["chromeos", "linux"] |
| 130 }, |
| 131 "bluetoothLowEnergy.sendRequestResponse": { |
| 132 "dependencies": ["manifest:bluetooth"], |
| 133 "contexts": ["blessed_extension"], |
| 134 "platforms": ["chromeos", "linux"] |
| 135 }, |
| 106 "bluetoothPrivate": [{ | 136 "bluetoothPrivate": [{ |
| 107 "dependencies": ["permission:bluetoothPrivate"], | 137 "dependencies": ["permission:bluetoothPrivate"], |
| 108 "contexts": ["blessed_extension"] | 138 "contexts": ["blessed_extension"] |
| 109 }, { | 139 }, { |
| 110 "channel": "stable", | 140 "channel": "stable", |
| 111 "contexts": ["webui"], | 141 "contexts": ["webui"], |
| 112 "matches": [ | 142 "matches": [ |
| 113 "chrome://bluetooth-pairing/*", | 143 "chrome://bluetooth-pairing/*", |
| 114 "chrome://md-settings/*", | 144 "chrome://md-settings/*", |
| 115 "chrome://settings/*", | 145 "chrome://settings/*", |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 }, { | 510 }, { |
| 481 "channel": "stable", | 511 "channel": "stable", |
| 482 "contexts": ["webui"], | 512 "contexts": ["webui"], |
| 483 "matches": [ | 513 "matches": [ |
| 484 "chrome://chrome-signin/*", | 514 "chrome://chrome-signin/*", |
| 485 "chrome://media-router/*", | 515 "chrome://media-router/*", |
| 486 "chrome://oobe/*" | 516 "chrome://oobe/*" |
| 487 ] | 517 ] |
| 488 }] | 518 }] |
| 489 } | 519 } |
| OLD | NEW |