| 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"] | |
| 96 }, | |
| 97 "bluetoothLowEnergy.createService": { | |
| 98 "dependencies": ["manifest:bluetooth"], | |
| 99 "contexts": ["blessed_extension"], | 95 "contexts": ["blessed_extension"], |
| 100 "platforms": ["chromeos", "linux"] | 96 "platforms": ["chromeos", "linux"] |
| 101 }, | 97 }, |
| 102 "bluetoothLowEnergy.createCharacteristic": { | |
| 103 "dependencies": ["manifest:bluetooth"], | |
| 104 "contexts": ["blessed_extension"], | |
| 105 "platforms": ["chromeos", "linux"] | |
| 106 }, | |
| 107 "bluetoothLowEnergy.createDescriptor": { | |
| 108 "dependencies": ["manifest:bluetooth"], | |
| 109 "contexts": ["blessed_extension"], | |
| 110 "platforms": ["chromeos", "linux"] | |
| 111 }, | |
| 112 "bluetoothLowEnergy.registerService": { | |
| 113 "dependencies": ["manifest:bluetooth"], | |
| 114 "contexts": ["blessed_extension"], | |
| 115 "platforms": ["chromeos", "linux"] | |
| 116 }, | |
| 117 "bluetoothLowEnergy.unregisterService": { | |
| 118 "dependencies": ["manifest:bluetooth"], | |
| 119 "contexts": ["blessed_extension"], | |
| 120 "platforms": ["chromeos", "linux"] | |
| 121 }, | |
| 122 "bluetoothLowEnergy.sendRequestResponse": { | |
| 123 "dependencies": ["manifest:bluetooth"], | |
| 124 "contexts": ["blessed_extension"], | |
| 125 "platforms": ["chromeos", "linux"] | |
| 126 }, | |
| 127 "bluetoothPrivate": [{ | 98 "bluetoothPrivate": [{ |
| 128 "dependencies": ["permission:bluetoothPrivate"], | 99 "dependencies": ["permission:bluetoothPrivate"], |
| 129 "contexts": ["blessed_extension"] | 100 "contexts": ["blessed_extension"] |
| 130 }, { | 101 }, { |
| 131 "channel": "stable", | 102 "channel": "stable", |
| 132 "contexts": ["webui"], | 103 "contexts": ["webui"], |
| 133 "matches": [ | 104 "matches": [ |
| 134 "chrome://bluetooth-pairing/*", | 105 "chrome://bluetooth-pairing/*", |
| 135 "chrome://md-settings/*", | 106 "chrome://md-settings/*", |
| 136 "chrome://settings/*", | 107 "chrome://settings/*", |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 }, { | 467 }, { |
| 497 "channel": "stable", | 468 "channel": "stable", |
| 498 "contexts": ["webui"], | 469 "contexts": ["webui"], |
| 499 "matches": [ | 470 "matches": [ |
| 500 "chrome://chrome-signin/*", | 471 "chrome://chrome-signin/*", |
| 501 "chrome://media-router/*", | 472 "chrome://media-router/*", |
| 502 "chrome://oobe/*" | 473 "chrome://oobe/*" |
| 503 ] | 474 ] |
| 504 }] | 475 }] |
| 505 } | 476 } |
| OLD | NEW |