Chromium Code Reviews| 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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and base_feature_provider.h. | 7 // well as 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 85 "contexts": ["webui"], | 85 "contexts": ["webui"], |
| 86 "matches": [ | 86 "matches": [ |
| 87 "chrome://bluetooth-pairing/*", | 87 "chrome://bluetooth-pairing/*", |
| 88 "chrome://md-settings/*", | 88 "chrome://md-settings/*", |
| 89 "chrome://settings/*", | 89 "chrome://settings/*", |
| 90 "chrome://settings-frame/*" | 90 "chrome://settings-frame/*" |
| 91 ] | 91 ] |
| 92 }], | 92 }], |
| 93 "bluetoothLowEnergy": { | 93 "bluetoothLowEnergy": { |
| 94 "dependencies": ["manifest:bluetooth"], | 94 "dependencies": ["manifest:bluetooth"], |
| 95 "contexts": ["blessed_extension"] | 95 "contexts": ["blessed_extension"], |
| 96 "platforms": ["chromeos", "linux"] | |
| 96 }, | 97 }, |
| 97 "bluetoothLowEnergy.createService": { | 98 "bluetoothLowEnergy.createService": { |
|
Devlin
2016/09/20 21:42:02
Can we get rid of all these child features, since
| |
| 98 "dependencies": ["manifest:bluetooth"], | 99 "dependencies": ["manifest:bluetooth"], |
| 99 "contexts": ["blessed_extension"], | 100 "contexts": ["blessed_extension"], |
| 100 "platforms": ["chromeos", "linux"] | 101 "platforms": ["chromeos", "linux"] |
| 101 }, | 102 }, |
| 102 "bluetoothLowEnergy.createCharacteristic": { | 103 "bluetoothLowEnergy.createCharacteristic": { |
| 103 "dependencies": ["manifest:bluetooth"], | 104 "dependencies": ["manifest:bluetooth"], |
| 104 "contexts": ["blessed_extension"], | 105 "contexts": ["blessed_extension"], |
| 105 "platforms": ["chromeos", "linux"] | 106 "platforms": ["chromeos", "linux"] |
| 106 }, | 107 }, |
| 107 "bluetoothLowEnergy.createDescriptor": { | 108 "bluetoothLowEnergy.createDescriptor": { |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 496 }, { | 497 }, { |
| 497 "channel": "stable", | 498 "channel": "stable", |
| 498 "contexts": ["webui"], | 499 "contexts": ["webui"], |
| 499 "matches": [ | 500 "matches": [ |
| 500 "chrome://chrome-signin/*", | 501 "chrome://chrome-signin/*", |
| 501 "chrome://media-router/*", | 502 "chrome://media-router/*", |
| 502 "chrome://oobe/*" | 503 "chrome://oobe/*" |
| 503 ] | 504 ] |
| 504 }] | 505 }] |
| 505 } | 506 } |
| OLD | NEW |