| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "management.getSelf": { | 174 "management.getSelf": { |
| 175 "dependencies": [], | 175 "dependencies": [], |
| 176 "channel": "stable", | 176 "channel": "stable", |
| 177 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 177 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 178 }, | 178 }, |
| 179 "management.uninstallSelf": { | 179 "management.uninstallSelf": { |
| 180 "dependencies": [], | 180 "dependencies": [], |
| 181 "channel": "stable", | 181 "channel": "stable", |
| 182 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 182 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 183 }, | 183 }, |
| 184 "mojoPrivate": { |
| 185 "contexts": ["blessed_extension"], |
| 186 "channel": "stable", |
| 187 "extension_types": ["platform_app", "extension"], |
| 188 "whitelist": [ |
| 189 // DO NOT SUBMIT until filled in. |
| 190 ] |
| 191 }, |
| 184 "power": { | 192 "power": { |
| 185 "dependencies": ["permission:power"], | 193 "dependencies": ["permission:power"], |
| 186 "contexts": ["blessed_extension"] | 194 "contexts": ["blessed_extension"] |
| 187 }, | 195 }, |
| 188 "runtime": { | 196 "runtime": { |
| 189 "channel": "stable", | 197 "channel": "stable", |
| 190 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 198 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
| 191 "contexts": ["blessed_extension"] | 199 "contexts": ["blessed_extension"] |
| 192 }, | 200 }, |
| 193 "runtime.getManifest": { | 201 "runtime.getManifest": { |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 }], | 402 }], |
| 395 "webViewRequest": [{ | 403 "webViewRequest": [{ |
| 396 "dependencies": ["permission:webview"], | 404 "dependencies": ["permission:webview"], |
| 397 "contexts": ["blessed_extension"] | 405 "contexts": ["blessed_extension"] |
| 398 }, { | 406 }, { |
| 399 "channel": "stable", | 407 "channel": "stable", |
| 400 "contexts": ["webui"], | 408 "contexts": ["webui"], |
| 401 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] | 409 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] |
| 402 }] | 410 }] |
| 403 } | 411 } |
| OLD | NEW |